mirror of
https://github.com/fr3ts0n/AndrOBD.git
synced 2026-06-06 12:34:25 -04:00
50 lines
1.6 KiB
XML
50 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/startup_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_margin="@dimen/activity_horizontal_margin"
|
|
android:orientation="vertical" >
|
|
|
|
<ImageView
|
|
android:id="@+id/imageView1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:alpha="1"
|
|
android:contentDescription="@string/logo"
|
|
android:src="@drawable/sunfire" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView3"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:text="@string/app_name"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:textStyle="bold" />
|
|
|
|
<TextView
|
|
android:id="@+id/TextView01"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:text="@string/app_version"
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:text="@string/copyright_fr3ts0n"
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
<ListView
|
|
android:id="@android:id/list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:visibility="invisible" />
|
|
|
|
</LinearLayout>
|