|
0
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<RelativeLayout
|
|
|
3 |
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
4 |
android:layout_width="match_parent"
|
|
|
5 |
android:layout_height="match_parent"
|
|
|
6 |
android:background="#000"
|
|
|
7 |
>
|
|
|
8 |
|
|
|
9 |
<!-- <FrameLayout
|
|
|
10 |
android:id="@+id/title_bar"
|
|
|
11 |
android:layout_width="match_parent"
|
|
|
12 |
android:layout_height="wrap_content"
|
|
|
13 |
/>-->
|
|
|
14 |
|
|
|
15 |
<RelativeLayout
|
|
|
16 |
android:id="@+id/panel"
|
|
|
17 |
android:layout_width="match_parent"
|
|
|
18 |
android:layout_height="match_parent"
|
|
|
19 |
android:layout_below="@id/title_bar"
|
|
|
20 |
>
|
|
|
21 |
|
|
|
22 |
<RelativeLayout
|
|
|
23 |
android:id="@+id/dashboard"
|
|
|
24 |
android:layout_width="match_parent"
|
|
|
25 |
android:layout_height="wrap_content"
|
|
|
26 |
>
|
|
|
27 |
|
|
|
28 |
<TextView
|
|
|
29 |
android:id="@+id/myip"
|
|
|
30 |
android:layout_width="wrap_content"
|
|
|
31 |
android:layout_height="wrap_content"
|
|
|
32 |
android:layout_alignParentLeft="true"
|
|
|
33 |
/>
|
|
|
34 |
|
|
|
35 |
<hh.dejsem.FlatButton
|
|
|
36 |
android:id="@+id/throughput"
|
|
|
37 |
android:layout_width="wrap_content"
|
|
|
38 |
android:layout_height="wrap_content"
|
|
|
39 |
android:layout_alignParentRight="true"
|
|
|
40 |
android:textColor="@color/dir_name_color"
|
|
|
41 |
android:text="connection throughput"
|
|
|
42 |
/>
|
|
|
43 |
|
|
|
44 |
</RelativeLayout>
|
|
|
45 |
|
|
|
46 |
<ScrollView
|
|
|
47 |
android:id="@+id/sc"
|
|
|
48 |
android:layout_width="match_parent"
|
|
|
49 |
android:layout_height="match_parent"
|
|
|
50 |
android:layout_below="@+id/dashboard"
|
|
|
51 |
>
|
|
|
52 |
|
|
|
53 |
<TextView
|
|
|
54 |
android:id="@+id/tv"
|
|
|
55 |
android:layout_width="match_parent"
|
|
|
56 |
android:layout_height="wrap_content"
|
|
|
57 |
/>
|
|
|
58 |
|
|
|
59 |
</ScrollView>
|
|
|
60 |
|
|
|
61 |
</RelativeLayout>
|
|
|
62 |
|
|
|
63 |
</RelativeLayout> |