/ABSherlock-Demos/res/layout/action_modes.xml

https://bitbucket.org/ayastrebov/android-actionbarsherlock · XML · 30 lines · 29 code · 1 blank · 0 comment · 0 complexity · cd60f6e88d159d846239365a4d70e79c MD5 · raw file

  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. android:padding="20dip">
  7. <LinearLayout
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:gravity="center_horizontal"
  11. android:orientation="horizontal">
  12. <Button
  13. android:id="@+id/start"
  14. android:layout_width="wrap_content"
  15. android:layout_height="wrap_content"
  16. android:layout_marginRight="10dp"
  17. android:text="Start" />
  18. <Button
  19. android:id="@+id/cancel"
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22. android:text="Cancel" />
  23. </LinearLayout>
  24. <TextView
  25. android:layout_width="fill_parent"
  26. android:layout_height="wrap_content"
  27. android:layout_marginTop="20dp"
  28. android:text="@string/action_modes_content"/>
  29. </LinearLayout>