Version für alte Androidversionen der Visiereinstellung für Recurvebogen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rbs_spinner_item.xml 1.4KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res/ch.spherIC.recurvebowsight"
  4. android:layout_width="fill_parent"
  5. android:layout_height="wrap_content"
  6. android:background="@drawable/list_item_background"
  7. android:gravity="center"
  8. android:orientation="horizontal"
  9. android:padding="8dp" >
  10. <ch.spherIC.recurvebowsight.components.FontTextView
  11. android:id="@+id/spinner_item_view"
  12. android:layout_width="0dp"
  13. android:layout_height="fill_parent"
  14. android:layout_marginRight="10dp"
  15. android:layout_weight="1"
  16. android:ellipsize="end"
  17. android:gravity="left|center_vertical"
  18. android:lines="1"
  19. android:paddingLeft="2dp"
  20. android:textAppearance="?android:attr/textAppearanceMediumInverse"
  21. android:textColor="@color/list_item_textcolor"
  22. android:textSize="18sp"
  23. app:font="@string/TitilliumWeb_Regular" />
  24. <CheckBox
  25. android:id="@+id/spinner_item_RadioBtn"
  26. android:layout_width="wrap_content"
  27. android:layout_height="wrap_content"
  28. android:button="@android:drawable/btn_radio"
  29. android:checked="false"
  30. android:clickable="false"
  31. android:focusable="false" />
  32. </LinearLayout>