2011-12-20 18:20:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-07-23 20:42:29 +00:00
|
|
|
android:layout_width="fill_parent"
|
2015-04-06 07:53:21 +00:00
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:fillViewport="true">
|
2012-07-23 20:42:29 +00:00
|
|
|
|
|
|
|
<LinearLayout android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2015-04-06 07:53:21 +00:00
|
|
|
android:padding="20dp"
|
|
|
|
android:gravity="center"
|
2012-07-23 20:42:29 +00:00
|
|
|
android:orientation="vertical">
|
2011-12-20 18:20:44 +00:00
|
|
|
|
|
|
|
<TextView
|
2012-07-23 20:42:29 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
2012-09-20 02:56:04 +00:00
|
|
|
android:text="@string/verify_identity_activity__their_identity_they_read"
|
2015-04-06 07:53:21 +00:00
|
|
|
android:layout_marginBottom="8dp" />
|
2011-12-20 18:20:44 +00:00
|
|
|
|
|
|
|
<TextView
|
2012-07-23 20:42:29 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
|
|
android:typeface="monospace"
|
2015-04-06 07:53:21 +00:00
|
|
|
android:fontFamily="monospace"
|
2012-07-23 20:42:29 +00:00
|
|
|
android:id="@+id/friend_reads"
|
|
|
|
android:text=""
|
2015-04-06 07:53:21 +00:00
|
|
|
android:layout_marginBottom="8dp" />
|
|
|
|
|
2012-07-23 20:42:29 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
<TextView
|
2012-07-23 20:42:29 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-09-20 02:56:04 +00:00
|
|
|
android:text="@string/verify_identity_activity__your_identity_you_read"
|
2012-07-23 20:42:29 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
2015-04-06 07:53:21 +00:00
|
|
|
android:layout_marginBottom="8dp" />
|
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2012-07-23 20:42:29 +00:00
|
|
|
<TextView
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/you_read"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
|
|
android:typeface="monospace"
|
2015-04-06 07:53:21 +00:00
|
|
|
android:fontFamily="monospace"
|
|
|
|
android:text="" />
|
|
|
|
|
2012-07-23 20:42:29 +00:00
|
|
|
</LinearLayout>
|
2011-12-20 18:20:44 +00:00
|
|
|
</ScrollView>
|