You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			78 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			XML
		
	
			
		
		
	
	
			78 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			XML
		
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
<ScrollView
 | 
						|
    xmlns:android="http://schemas.android.com/apk/res/android"
 | 
						|
    xmlns:app="http://schemas.android.com/apk/res-auto"
 | 
						|
    xmlns:tools="http://schemas.android.com/tools"
 | 
						|
    android:layout_width="match_parent"
 | 
						|
    android:layout_height="match_parent"
 | 
						|
    android:background="@color/white"
 | 
						|
    android:fillViewport="true"
 | 
						|
    tools:context=".loki.KeyPairActivity">
 | 
						|
 | 
						|
    <LinearLayout
 | 
						|
        android:layout_width="match_parent"
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:layout_marginStart="32dp"
 | 
						|
        android:layout_marginEnd="32dp"
 | 
						|
        android:orientation="vertical">
 | 
						|
 | 
						|
        <TextView
 | 
						|
            android:id="@+id/titleTextView"
 | 
						|
            style="@style/Signal.Text.Headline.Registration"
 | 
						|
            android:layout_width="match_parent"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:layout_marginTop="40dp"
 | 
						|
            android:text="@string/activity_key_pair_title"
 | 
						|
            android:textAlignment="center" />
 | 
						|
 | 
						|
        <TextView
 | 
						|
            android:id="@+id/subtitleTextView"
 | 
						|
            style="@style/Signal.Text.Body"
 | 
						|
            android:layout_width="match_parent"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:layout_marginTop="16dp"
 | 
						|
            android:text="@string/activity_key_pair_subtitle"
 | 
						|
            android:textStyle="bold"
 | 
						|
            android:textAlignment="center" />
 | 
						|
 | 
						|
        <TextView
 | 
						|
            android:id="@+id/mnemonicTextView"
 | 
						|
            style="@style/Signal.Text.Body"
 | 
						|
            android:layout_width="match_parent"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:layout_marginTop="16dp"
 | 
						|
            android:alpha="0.8"
 | 
						|
            android:textStyle="italic"
 | 
						|
            android:textAlignment="center"
 | 
						|
            tools:text="quick brown fox jump lazy dog" />
 | 
						|
 | 
						|
        <Button
 | 
						|
            android:id="@+id/copyButton"
 | 
						|
            android:layout_width="match_parent"
 | 
						|
            android:layout_height="50dp"
 | 
						|
            android:layout_marginTop="20dp"
 | 
						|
            android:layout_gravity="center_horizontal"
 | 
						|
            android:background="@color/white"
 | 
						|
            android:textColor="@color/signal_primary"
 | 
						|
            android:text="@string/activity_key_pair_copy_button_title"
 | 
						|
            android:elevation="0dp"
 | 
						|
            android:stateListAnimator="@null" />
 | 
						|
 | 
						|
        <com.dd.CircularProgressButton
 | 
						|
            android:id="@+id/registerButton"
 | 
						|
            android:layout_width="match_parent"
 | 
						|
            android:layout_height="50dp"
 | 
						|
            android:layout_marginTop="20dp"
 | 
						|
            android:layout_gravity="center_horizontal"
 | 
						|
            android:background="@color/signal_primary"
 | 
						|
            android:textColor="@color/white"
 | 
						|
            app:cpb_colorIndicator="@color/white"
 | 
						|
            app:cpb_colorProgress="@color/textsecure_primary"
 | 
						|
            app:cpb_cornerRadius="4dp"
 | 
						|
            app:cpb_selectorIdle="@drawable/progress_button_state"
 | 
						|
            app:cpb_textIdle="@string/activity_key_pair_register_button_title" />
 | 
						|
 | 
						|
    </LinearLayout>
 | 
						|
 | 
						|
</ScrollView>
 |