Files
alunizaje/android/tools/android-osx/tools/templates/other/AppWidget/root/res/layout/appwidget.xml
Andros Fenollosa 892d89c7f1 Order files
2016-11-12 12:27:08 +01:00

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>