-
Notifications
You must be signed in to change notification settings - Fork 0
/
activity_main
41 lines (35 loc) · 1.53 KB
/
activity_main
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
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:background="#ecf0f1"
tools:context=".MainActivity" >
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/button1"
style="?android:attr/borderlessButtonStyle"
android:drawableLeft="@android:drawable/ic_input_add"
android:text="Buat Biodata Baru" />
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/button2" android:layout_alignParentLeft="true"
android:layout_alignParentStart="true">
</ListView>
<ImageView android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/uye"
android:alpha="0.4"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignTop="@+id/listView1"
android:layout_alignParentBottom="true" />
</RelativeLayout>