25 lines
677 B
XML
25 lines
677 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_centerInParent="true"
|
|
android:background="@drawable/splash_background" >
|
|
|
|
<ImageView
|
|
android:id="@+id/splash_droid"
|
|
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:src="@drawable/splash_droid" >
|
|
</ImageView>
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|