Home | History | Annotate | Download | only in layout
      1 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      2     android:layout_width="match_parent"
      3     android:layout_height="match_parent"
      4     android:padding="@dimen/widget_margin"
      5     android:background="#09C" >
      6 
      7     <TextView
      8         android:id="@+id/appwidget_text"
      9         android:layout_width="wrap_content"
     10         android:layout_height="wrap_content"
     11         android:layout_centerHorizontal="true"
     12         android:layout_centerVertical="true"
     13         android:text="@string/appwidget_text"
     14         android:textColor="#ffffff"
     15         android:textSize="24sp"
     16         android:textStyle="bold|italic"
     17         android:layout_margin="8dp"
     18         android:contentDescription="@string/appwidget_text"
     19         android:background="#09C"/>
     20 
     21 </RelativeLayout>