-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivity_main.xml
More file actions
33 lines (29 loc) · 1.07 KB
/
activity_main.xml
File metadata and controls
33 lines (29 loc) · 1.07 KB
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
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="16dp"
android:paddingRight="16dp"
android:paddingTop="16dp"
android:paddingLeft="16dp"
tools:context="com.example.multiapp.MainActivity">
>
<Button
android:id="@+id/btn_Order"
android:layout_width="130dp"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="50dp"
android:text="@string/app_name" />
<TextView
android:id="@+id/tvItemSelected"
android:layout_width="wrap_content"
android:textSize="25sp"
android:textStyle="italic"
android:textColor="#800080"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"/>
</RelativeLayout>