2014-03-07 14:24:33 +01:00
|
|
|
<?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="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="8dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/hint"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="18sp"/>
|
2014-03-07 20:22:26 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="#FFe92727"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:textSize="18sp"
|
|
|
|
android:text="Do not connect unless you know exactly what you are doing"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingBottom="8dp"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="18sp"
|
|
|
|
android:text="The SHA1 fingerprint is:" />
|
2014-03-07 14:24:33 +01:00
|
|
|
|
|
|
|
<TextView
|
2014-03-07 20:22:26 +01:00
|
|
|
android:layout_gravity="center_horizontal"
|
2014-03-07 14:24:33 +01:00
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingBottom="8dp"
|
|
|
|
android:id="@+id/sha"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:typeface="monospace"
|
|
|
|
android:textStyle="bold"
|
2014-03-07 20:22:26 +01:00
|
|
|
android:textSize="20sp"/>
|
|
|
|
|
2014-03-07 14:24:33 +01:00
|
|
|
</LinearLayout>
|