github.com/SkycoinProject/gomobile@v0.0.0-20190312151609-d3739f865fa6/example/ivy/android/app/src/main/res/layout/activity_about.xml (about) 1 <?xml version="1.0" encoding="utf-8"?> 2 3 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 4 xmlns:tools="http://schemas.android.com/tools" 5 android:id="@+id/about_layout" 6 android:layout_width="match_parent" 7 android:layout_height="match_parent" 8 android:background="#EEFFFFFF" 9 android:gravity="center" 10 android:orientation="vertical" 11 android:padding="10dp" 12 android:weightSum="1" 13 tools:context="org.golang.ivy.About"> 14 15 <ImageView 16 android:id="@+id/ivysketch" 17 android:src="@drawable/ivyabout" 18 android:layout_gravity="center_horizontal" 19 android:layout_width="256dp" 20 android:layout_height="256dp" 21 android:contentDescription="@string/ivysketch_desc" /> 22 23 <WebView 24 android:id="@+id/about_ivy" 25 android:layout_width="fill_parent" 26 android:layout_height="fill_parent" 27 android:text="@string/app_name" 28 android:textSize="@dimen/abc_text_size_headline_material" /> 29 30 </LinearLayout>