Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!--
      3   XML for screen providing ability to enter text and send some intents.
      4 -->
      5 
      6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      7     android:layout_width="wrap_content"
      8     android:layout_height="wrap_content"
      9     android:orientation="vertical" >
     10 
     11   <TextView
     12       android:id="@+id/popup_title"
     13       android:layout_width="wrap_content"
     14       android:layout_height="wrap_content"
     15       android:layout_marginTop="10dp"
     16       android:text="@string/popup_title"
     17       android:textAppearance="?android:attr/textAppearanceLarge"/>
     18 
     19   <TextView
     20       android:layout_width="wrap_content"
     21       android:layout_height="wrap_content"
     22       android:layout_marginTop="10dp"
     23       android:text="@string/popup_window_text" />
     24 
     25 </LinearLayout>
     26