Skip to content

Instantly share code, notes, and snippets.

@daichan4649
Created September 11, 2013 15:46
Show Gist options
  • Save daichan4649/6525515 to your computer and use it in GitHub Desktop.
Save daichan4649/6525515 to your computer and use it in GitHub Desktop.
like iPhone's 'finger print'
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical"
android:padding="24dip" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Success"
android:textSize="24sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dip"
android:gravity="center"
android:text="Touch ID is ready. Your print can be\nused for unlocking your Android." />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:orientation="vertical" >
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/finger" />
</LinearLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Continue"
android:textColor="#00ccff"
android:textSize="20sp" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment