locale_edit.xml 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical" >
  6. <me.yoqi.screenfilter.BrightnessSelector
  7. android:id="@+id/PreferencesBrightnessSelector"
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:layout_weight="20.0" />
  11. <TableLayout
  12. android:layout_width="fill_parent"
  13. android:layout_height="wrap_content"
  14. android:layout_weight="0.0"
  15. android:stretchColumns="*" >
  16. <TableRow>
  17. <Button
  18. android:id="@+id/DontSaveSettingButton"
  19. android:text="@string/dont_save_setting"
  20. android:textSize="18.0dip" />
  21. <Button
  22. android:id="@+id/SaveSettingButton"
  23. android:text="@string/save_setting"
  24. android:textSize="18.0dip" />
  25. </TableRow>
  26. </TableLayout>
  27. </LinearLayout>