| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res/ch.spherIC.recurvebowsight"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:orientation="horizontal"
- android:padding="8dp" >
-
- <ch.spherIC.recurvebowsight.components.XImageView
- android:id="@+id/xImageView1"
- android:layout_width="50dp"
- android:layout_height="50dp"
- android:layout_marginRight="10dp"
- android:background="@drawable/glassbg_black"
- android:src="@drawable/ic_menu_choose_equipment"
- app:drawBorder="true"
- app:drawBorderColor="@color/android_blue_dark"
- app:drawBorderWidth="3dp"/>
-
- <LinearLayout
- android:id="@+id/chooseArcherySetupTxt"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:orientation="vertical" >
-
- <ch.spherIC.recurvebowsight.components.FontTextView
- android:id="@+id/chooseArcherySetupTxtMain"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="bottom|left"
- android:lines="1"
- android:paddingLeft="2dp"
- android:scrollHorizontally="true"
- android:text="Hoyt / Avalon"
- android:textAppearance="?android:attr/textAppearanceMediumInverse"
- android:textColor="@color/android_blue_dark"
- android:textSize="18sp"
- app:font="@string/TitilliumWeb_Bold" />
-
- <ch.spherIC.recurvebowsight.components.FontTextView
- android:id="@+id/chooseArcherySetupTxtSub"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="bottom|left"
- android:lines="1"
- android:paddingLeft="2dp"
- android:scrollHorizontally="true"
- android:text="Hoyt / Avalon"
- android:textAppearance="?android:attr/textAppearanceSmallInverse"
- android:textColor="@color/black"
- app:font="@string/TitilliumWeb_Regular" />
-
- </LinearLayout>
-
- </LinearLayout>
|