| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?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:id="@+id/layout_About"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="@drawable/bg_about"
- android:orientation="vertical"
- android:padding="10dp" >
-
- <LinearLayout
- android:id="@+id/layout_aboutVersion"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="horizontal" >
-
- <ImageView
- android:id="@+id/about_imageAppIcon"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="20dip" />
-
- <LinearLayout
- android:id="@+id/layout_aboutVersionText"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="vertical" >
-
- <ch.spherIC.recurvebowsight.components.FontTextView
- android:id="@+id/about_TextDescription"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="iii"
- android:textColor="#FF000000"
- app:font="@string/TitilliumWeb_Regular" />
-
- <ch.spherIC.recurvebowsight.components.FontTextView
- android:id="@+id/about_TextVersion"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="iii"
- android:textColor="#FF000000"
- app:font="@string/TitilliumWeb_Bold" />
- </LinearLayout>
- </LinearLayout>
-
- <ch.spherIC.recurvebowsight.components.FontTextView
- android:id="@+id/about_TextAutor"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:paddingBottom="20dip"
- android:paddingTop="20dip"
- android:text="@+id/TextView01"
- android:textColor="@color/black"
- app:font="@string/TitilliumWeb_Regular" />
-
- <Button
- android:id="@+id/btn_AboutClose"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:background="@drawable/btn_fs"
- android:text="@string/caption_Close"
- android:textColor="@color/white" >
- </Button>
-
- </LinearLayout>
|