Advertisement
Guest User

subject_selection_activity-scrollview

a guest
Mar 5th, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.12 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.     android:layout_width="match_parent"
  4.     android:layout_height="match_parent"
  5.     android:orientation="vertical"
  6.     android:padding="5dp" >
  7.  
  8.     <TextView
  9.         android:id="@+id/textView1"
  10.         android:layout_width="wrap_content"
  11.         android:layout_height="wrap_content"
  12.         android:layout_gravity="center_vertical"
  13.         android:text="TextView" />
  14.  
  15.     <ScrollView
  16.         android:id="@+id/scrollView1"
  17.         android:layout_width="match_parent"
  18.         android:layout_height="wrap_content"
  19.         android:layout_weight="1">
  20.  
  21.         <LinearLayout
  22.             android:id="@+id/subject_selection_layout"
  23.             android:layout_width="match_parent"
  24.             android:layout_height="match_parent"
  25.             android:orientation="vertical" >
  26.  
  27.         </LinearLayout>
  28.     </ScrollView>
  29.  
  30.     <Button
  31.         android:id="@+id/button1"
  32.         android:layout_width="match_parent"
  33.         android:layout_height="wrap_content"
  34.         android:text="Button" />
  35.  
  36. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement