1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#F2E8CD">
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="30dp"
android:background="#002C41"
android:gravity="center|left" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_text2"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_marginTop="@dimen/activity_vertical_margin"
android:textColor="#F2E8CD"
android:textSize="12sp" />
</FrameLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<FrameLayout
android:layout_width="38dp"
android:layout_height="match_parent"
android:layout_gravity="bottom|center_horizontal"
android:background="#002C41"
android:foregroundGravity="bottom|center_horizontal" >
<ImageView
android:contentDescription="@string/ctdesc"
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center_horizontal"
android:paddingBottom="40dp"
android:src="@drawable/lpctext" />
<Button
android:id="@+id/bouton0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#002C41"
android:drawableLeft="@drawable/closing"
android:layout_gravity="bottom|center_horizontal" />
</FrameLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:textColor="#000000"
android:background="#000000"
android:textSize="12sp"
android:textStyle="bold"
android:layout_height="fill_parent">
</ListView>
</FrameLayout>
</LinearLayout>
</LinearLayout> |