checkey / res / layout / app_entry.xml @ 74a77186
History | View | Annotate | Download (638 Bytes)
1 |
<?xml version="1.0" encoding="utf-8"?>
|
---|---|
2 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
3 |
android:layout_width="fill_parent" |
4 |
android:layout_height="wrap_content" |
5 |
android:orientation="horizontal" > |
6 |
|
7 |
<ImageView
|
8 |
android:id="@+id/icon" |
9 |
android:layout_width="48dip" |
10 |
android:layout_height="48dip" |
11 |
android:contentDescription="@string/icon" /> |
12 |
|
13 |
<TextView
|
14 |
android:id="@+id/text" |
15 |
android:layout_width="fill_parent" |
16 |
android:layout_height="wrap_content" |
17 |
android:gravity="left|center_vertical" |
18 |
android:textSize="24sp" /> |
19 |
|
20 |
</LinearLayout>
|