Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.39 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  3.        android:layout_width="fill_parent"
  4.        android:layout_height="fill_parent"
  5.        >
  6.  
  7.     <LinearLayout
  8.                  android:orientation="vertical"
  9.                  android:layout_width="fill_parent"
  10.                  android:layout_height="fill_parent">
  11.  
  12.         <TextView
  13.                android:layout_width="match_parent"
  14.                android:layout_height="wrap_content"
  15.                android:text="@string/image_title"
  16.                android:id="@+id/title_field"/>
  17.  
  18.         <TextView
  19.                android:layout_width="match_parent"
  20.                android:layout_height="wrap_content"
  21.                android:text="@string/image_date"
  22.                android:id="@+id/date_field"
  23.                />
  24.  
  25.         <ImageView
  26.                android:layout_width="292dp"
  27.                android:layout_height="371dp"
  28.                android:id="@+id/image"
  29.                android:src="@drawable/test_image"
  30.                />
  31.  
  32.         <TextView
  33.                android:layout_width="match_parent"
  34.                android:layout_height="wrap_content"
  35.                android:text="@string/image_description"
  36.                android:id="@+id/description_field"
  37.                android:layout_weight="0.12"/>
  38.  
  39.     </LinearLayout>
  40. </ScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement