toggle.xml 984 B

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent" >
  5. <ImageButton
  6. android:id="@+id/ToggleImage"
  7. android:layout_width="wrap_content"
  8. android:layout_height="wrap_content"
  9. android:layout_centerInParent="true"
  10. android:background="@drawable/widget_icon"
  11. android:padding="0.0dip"
  12. android:scaleType="fitCenter" />
  13. <TextView
  14. android:id="@+id/WidgetToggleText"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:layout_centerInParent="true"
  18. android:shadowColor="#ff333333"
  19. android:shadowRadius="4.0"
  20. android:singleLine="true"
  21. android:text="@string/widget_loading"
  22. android:textColor="#ffffffff"
  23. android:textSize="16.0dip"
  24. android:textStyle="bold" />
  25. </RelativeLayout>