blob: c2a0ed64d3dd68c89280c7766a8ca9d778123ba7 (
plain) (
blame)
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
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="@dimen/space_m">
<TextView
android:id="@+id/keyText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/space_m"
android:background="@drawable/bg_input"
android:padding="12dp"
android:textAppearance="@style/TextAppearance.Rsend.Mono"
android:textIsSelectable="true" />
<Button
android:id="@+id/btnCopyKey"
style="@style/Widget.Rsend.Button.Secondary"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/space_s"
android:text="Copy public key" />
<Button
android:id="@+id/btnGenKey"
style="@style/Widget.Rsend.Button.Secondary"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/space_s"
android:text="Generate new key" />
<Button
android:id="@+id/btnImportKey"
style="@style/Widget.Rsend.Button.Secondary"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Import private key" />
</LinearLayout>
|