Skip to content

Commit de180a8

Browse files
committed
Add launcher app layouts
1 parent 6100924 commit de180a8

File tree

3 files changed

+76
-0
lines changed

3 files changed

+76
-0
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<LinearLayout
3+
xmlns:android="http://schemas.android.com/apk/res/android"
4+
android:orientation="horizontal"
5+
android:gravity="center"
6+
>
7+
8+
<ImageView
9+
android:id="@+id/icon"
10+
android:layout_width="64sp"
11+
android:layout_height="64sp"
12+
android:scaleType="fitCenter"
13+
android:padding="2sp"
14+
/>
15+
16+
<LinearLayout
17+
android:orientation="vertical"
18+
android:layout_width="fill_parent"
19+
android:layout_height="wrap_content"
20+
>
21+
22+
<TextView
23+
android:layout_width="wrap_content"
24+
android:layout_height="wrap_content"
25+
android:id="@+id/title"
26+
android:textSize="18sp"
27+
android:textColor="#fff"
28+
android:singleLine="true"
29+
/>
30+
31+
<TextView
32+
android:layout_width="wrap_content"
33+
android:layout_height="wrap_content"
34+
android:singleLine="true"
35+
android:id="@+id/author"
36+
/>
37+
38+
</LinearLayout>
39+
</LinearLayout>
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
3+
<LinearLayout
4+
xmlns:android="http://schemas.android.com/apk/res/android"
5+
android:orientation="vertical"
6+
>
7+
8+
<TextView
9+
android:text="Please choose a project:"
10+
android:layout_width="fill_parent"
11+
android:layout_height="wrap_content"
12+
android:padding="4sp"
13+
/>
14+
15+
<ListView
16+
android:id="@+id/projectList"
17+
android:layout_width="fill_parent"
18+
android:layout_height="fill_parent"
19+
/>
20+
21+
22+
</LinearLayout>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
3+
<LinearLayout
4+
xmlns:android="http://schemas.android.com/apk/res/android"
5+
android:orientation="vertical"
6+
>
7+
8+
<TextView
9+
android:id="@+id/emptyText"
10+
android:layout_width="fill_parent"
11+
android:layout_height="wrap_content"
12+
android:padding="4sp"
13+
/>
14+
15+
</LinearLayout>

0 commit comments

Comments
 (0)