-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathactivity_main5.xml
More file actions
46 lines (41 loc) · 1.91 KB
/
activity_main5.xml
File metadata and controls
46 lines (41 loc) · 1.91 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
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
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:background="#EDE8E7">
xmlns:android="http://schemas.android.com/apk/res/android" />
<RelativeLayout android:layout_width="match_parent"
android:layout_height="fill_parent" android:paddingLeft="0dp"
android:paddingRight="0dp"
android:paddingTop="0dp"
android:paddingBottom="0dp"
tools:context="com.example.abans_000.docplus.SignOthers">
<TextView
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="#B60101"
android:id="@+id/textView21" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="200dp"
android:orientation="vertical"
android:layout_below="@+id/textView21">
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="planets"
android:layout_alignParentLeft="true"
/>
<Spinner android:id="@+id/spinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_toRightOf="@+id/text"
android:entries="@array/planets_array"
android:background="#D3D3D3"
xmlns:android="http://schemas.android.com/apk/res/android"></Spinner>
</LinearLayout>
</RelativeLayout>
</ScrollView>