|
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 |
<ScrollView
|
|
|
10 |
android:id="@+id/sc"
|
|
|
11 |
android:layout_width="match_parent"
|
|
|
12 |
android:layout_height="match_parent"
|
|
|
13 |
android:layout_alignParentTop="true"
|
|
|
14 |
>
|
|
|
15 |
|
|
|
16 |
<TextView
|
|
|
17 |
android:id="@+id/tv"
|
|
|
18 |
android:layout_width="match_parent"
|
|
|
19 |
android:layout_height="wrap_content"
|
|
|
20 |
/>
|
|
|
21 |
|
|
|
22 |
</ScrollView>
|
|
|
23 |
|
|
|
24 |
<hh.dejsem.FlatButton
|
|
|
25 |
android:id="@+id/intrr"
|
|
|
26 |
android:layout_width="wrap_content"
|
|
|
27 |
android:layout_height="wrap_content"
|
|
|
28 |
android:layout_alignParentTop="true"
|
|
|
29 |
android:layout_marginTop="24dp"
|
|
|
30 |
android:layout_alignParentRight="true"
|
|
|
31 |
android:textColor="@color/dir_name_color"
|
|
|
32 |
android:text="stop/restart"
|
|
|
33 |
/>
|
|
|
34 |
|
|
|
35 |
</RelativeLayout>
|
|
|
36 |
|