forked from APIJSON/APIJSON-Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequest_activity.xml
More file actions
51 lines (43 loc) · 1.54 KB
/
request_activity.xml
File metadata and controls
51 lines (43 loc) · 1.54 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
47
48
49
50
51
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
style="@style/activity_page"
android:padding="0dp" >
<ScrollView
style="@style/match_match"
android:layout_weight="1" >
<LinearLayout
style="@style/match_match"
android:orientation="vertical" >
<TextView
android:id="@+id/tvRequestResult"
style="@style/select_json"
android:hint="result"
android:padding="16dp"
android:textIsSelectable="true" />
</LinearLayout>
</ScrollView>
<LinearLayout
style="@style/match_wrap"
android:layout_height="45dp"
android:gravity="bottom"
android:orientation="horizontal" >
<ProgressBar
android:id="@+id/pbRequest"
android:layout_width="wrap_content"
android:layout_height="match_parent" />
<EditText
android:id="@+id/etRequestUrl"
style="@style/select_name"
android:layout_height="match_parent"
android:layout_gravity="bottom"
android:layout_weight="1"
android:gravity="bottom|left"
android:padding="0dp"
android:text="uri" />
<Button
android:id="@+id/btnRequestRequest"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Request" />
</LinearLayout>
</LinearLayout>