21 lines
772 B
XML
Executable File
21 lines
772 B
XML
Executable File
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:padding="@dimen/widget_margin"
|
|
android:background="#09C" >
|
|
|
|
<TextView
|
|
android:id="@+id/appwidget_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_centerVertical="true"
|
|
android:text="@string/appwidget_text"
|
|
android:textColor="#ffffff"
|
|
android:textSize="24sp"
|
|
android:textStyle="bold|italic"
|
|
android:layout_margin="8dp"
|
|
android:contentDescription="@string/appwidget_text"
|
|
android:background="#09C"/>
|
|
|
|
</RelativeLayout> |