fragment_state.xml 1.1 KB

1234567891011121314151617181920212223242526272829
  1. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. xmlns:mstb="http://schemas.android.com/apk/res-auto"
  4. android:id="@+id/statelayout"
  5. android:layout_width="match_parent"
  6. android:layout_height="wrap_content"
  7. tools:context="com.example.david.libretasker.InputSelector.MultiState">
  8. <LinearLayout
  9. android:orientation="vertical"
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content">
  12. <TextView
  13. android:layout_width="match_parent"
  14. android:layout_height="wrap_content"
  15. android:id="@+id/textView5" />
  16. <org.honorato.multistatetogglebutton.MultiStateToggleButton
  17. android:id="@+id/mstb_multi_id"
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:layout_marginTop="10dip"
  21. mstb:mstbPrimaryColor="@color/black"
  22. mstb:mstbSecondaryColor="@color/gray"
  23. />
  24. </LinearLayout>
  25. </FrameLayout>