89 lines
3.1 KiB
XML
89 lines
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/about_main"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="350dp"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="bottom"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="15dp"
|
|
android:paddingLeft="5dp"
|
|
android:paddingRight="5dp"
|
|
android:paddingTop="15dp" >
|
|
|
|
<RelativeLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal" >
|
|
|
|
<ImageView
|
|
android:id="@+id/logo"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:focusable="false"
|
|
android:clickable="false"
|
|
android:src="@drawable/icon" />
|
|
|
|
<TextView
|
|
android:id="@+id/app_name_full"
|
|
android:textSize="29sp"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_toRightOf="@+id/logo"
|
|
android:layout_centerVertical="true"
|
|
android:gravity="center"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:onClick="onAppNameClick"
|
|
android:clickable="true"
|
|
/>
|
|
</RelativeLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/about_text"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:gravity="center"
|
|
android:textSize="16sp" />
|
|
|
|
<TextView
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="22dp"
|
|
android:layout_weight="0.12"
|
|
android:gravity="center|top"
|
|
android:text="@string/about_copyright"
|
|
android:textSize="14sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/Project64_authors"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:textSize="12sp" />
|
|
<TextView
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dp"
|
|
android:gravity="center"
|
|
android:text="@string/authors"
|
|
android:textSize="12sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/main_link"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="15dp"
|
|
android:layout_weight="0.27"
|
|
android:autoLink="web"
|
|
android:gravity="center"
|
|
android:text="@string/about_link"
|
|
android:textSize="14sp" />
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|