Advertisement
fusion44

Untitled

Dec 28th, 2011
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.81 KB | None | 0 0
  1. @the included layout@
  2. <?xml version="1.0" encoding="utf-8"?>
  3. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  4.    android:layout_width="fill_parent"
  5.    android:layout_height="fill_parent"
  6.    android:orientation="vertical" >
  7.  
  8.  
  9.     <TextView
  10.        android:id="@+id/languageHeader"
  11.        android:layout_width="fill_parent"
  12.        android:layout_height="wrap_content"
  13.        android:layout_weight="0.02"
  14.        android:text="Medium Text"
  15.        android:textAppearance="?android:attr/textAppearanceMedium" android:gravity="center_vertical|center_horizontal" android:background="@color/header" android:shadowColor="@color/shadow"/>
  16.  
  17.  
  18.  
  19.     <TextView
  20.        android:id="@+id/languageText"
  21.        android:layout_width="fill_parent"
  22.        android:layout_height="wrap_content"
  23.        android:layout_weight="0.17"
  24.        android:text="Large Text"
  25.        android:textAppearance="?android:attr/textAppearanceLarge" android:gravity="center_vertical|center_horizontal" android:background="@color/background" android:shadowColor="@color/shadow"/>
  26.  
  27. </LinearLayout>
  28.  
  29. @the including layout@
  30.  
  31. <?xml version="1.0" encoding="utf-8"?>
  32. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  33.    android:id="@+id/LinearLayout1"
  34.    android:layout_width="fill_parent"
  35.    android:layout_height="fill_parent" >
  36.  
  37.  
  38.     <include
  39.        android:id="@+id/activityBaseLangView"
  40.        android:layout_width="wrap_content"
  41.        android:layout_height="fill_parent"
  42.        android:layout_weight="0.52"
  43.        layout="@layout/readtrainingactivity_word_widget" />
  44.  
  45.     <include
  46.        android:id="@+id/activityLearnLangView"
  47.        android:layout_width="wrap_content"
  48.        android:layout_height="fill_parent"
  49.        android:layout_weight="0.50"
  50.        layout="@layout/readtrainingactivity_word_widget" />
  51.  
  52. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement