12345678910111213141516171819202122232425262728 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent" >
- <ImageButton
- android:id="@+id/ToggleImage"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:background="@drawable/widget_icon"
- android:padding="0.0dip"
- android:scaleType="fitCenter" />
- <TextView
- android:id="@+id/WidgetToggleText"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:shadowColor="#ff333333"
- android:shadowRadius="4.0"
- android:singleLine="true"
- android:text="@string/widget_loading"
- android:textColor="#ffffffff"
- android:textSize="16.0dip"
- android:textStyle="bold" />
- </RelativeLayout>
|