Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 
      3 <LinearLayout
      4         xmlns:android="http://schemas.android.com/apk/res/android"
      5         android:layout_width="wrap_content"
      6         android:layout_height="wrap_content"
      7         >
      8 
      9     <TextView
     10             android:id="@+id/black_text_view"
     11             android:layout_width="wrap_content"
     12             android:layout_height="wrap_content"
     13             android:text="Black Text"
     14             android:textColor="#000000"
     15             />
     16 
     17     <TextView
     18             android:id="@+id/white_text_view"
     19             android:layout_width="wrap_content"
     20             android:layout_height="wrap_content"
     21             android:text="White Text"
     22             android:textColor="@android:color/white"
     23             />
     24 
     25     <TextView
     26             android:id="@+id/grey_text_view"
     27             android:layout_width="wrap_content"
     28             android:layout_height="wrap_content"
     29             android:text="Grey Text"
     30             android:textColor="@color/grey42"
     31             />
     32 </LinearLayout>
     33