Advertisement
Guest User

Untitled

a guest
Jul 1st, 2012
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.82 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    android:layout_width="fill_parent"
  4.    android:layout_height="fill_parent"
  5.    android:orientation="vertical" >
  6.  
  7.  <ScrollView
  8.    xmlns:android="http://schemas.android.com/apk/res/android"
  9.    android:layout_width="fill_parent"
  10.    android:layout_height="fill_parent"
  11.    android:layout_above="@+id/layoutgoToUrl"
  12.  >
  13.  
  14.  
  15.         <LinearLayout
  16.            xmlns:android="http://schemas.android.com/apk/res/android"
  17.            android:layout_width="wrap_content"
  18.            android:layout_height="wrap_content"
  19.            android:orientation="vertical" >
  20.  
  21.             <TextView
  22.                android:id="@+id/labelInfo"
  23.                android:layout_width="wrap_content"
  24.                android:layout_height="wrap_content" />
  25.  
  26.             <TextView
  27.                android:id="@+id/priceInfo"
  28.                android:layout_width="fill_parent"
  29.                android:layout_height="wrap_content" />
  30.  
  31.             <TextView
  32.                android:id="@+id/description"
  33.                android:layout_width="fill_parent"
  34.                android:layout_height="wrap_content" />
  35.  
  36.             <TextView
  37.                android:id="@+id/brand"
  38.                android:layout_width="fill_parent"
  39.                android:layout_height="wrap_content" />
  40.         </LinearLayout>
  41.     </ScrollView>
  42.  
  43.     <RelativeLayout
  44.    android:id="@+id/layoutgoToUrl"
  45.    android:layout_width="fill_parent"
  46.    android:layout_height="fill_parent" >
  47.  
  48.     <Button
  49.        android:id="@+id/goToUrl"
  50.        android:layout_width="fill_parent"
  51.        android:layout_height="wrap_content"
  52.        android:layout_alignParentBottom="true"
  53.  
  54.  
  55.        android:text="buy" />
  56. </RelativeLayout>
  57.  
  58.  
  59. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement