-
Notifications
You must be signed in to change notification settings - Fork 0
/
file layout
38 lines (34 loc) · 1.21 KB
/
file layout
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
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp">
<TextView
android:id="@+id/statusText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Status: Not Mining"
android:textSize="18sp"
android:gravity="center" />
<TextView
android:id="@+id/hashRate"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Hash Rate: 0 H/s"
android:gravity="center"
android:textSize="16sp"
android:layout_marginTop="16dp" />
<Button
android:id="@+id/startButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Start Mining"
android:layout_marginTop="24dp" />
<Button
android:id="@+id/stopButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Stop Mining"
android:layout_marginTop="16dp"
android:visibility="gone" />
</LinearLayout>