2015-09-29 20:14:22 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-09-04 02:44:33 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-09-29 20:14:22 +00:00
|
|
|
android:orientation="vertical"
|
2017-09-04 02:44:33 +00:00
|
|
|
tools:background="#FF2090ea">
|
2015-09-29 20:14:22 +00:00
|
|
|
|
|
|
|
<TextView android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:id="@+id/blurb"
|
2015-10-01 22:21:21 +00:00
|
|
|
android:textSize="@dimen/onboarding_title_size"
|
2015-09-29 20:14:22 +00:00
|
|
|
android:textIsSelectable="false"
|
|
|
|
android:gravity="center_horizontal|bottom"
|
|
|
|
android:paddingLeft="20dp"
|
|
|
|
android:paddingRight="20dp"
|
2017-09-04 02:44:33 +00:00
|
|
|
android:layout_marginTop="30dp"
|
2015-09-29 20:14:22 +00:00
|
|
|
android:fontFamily="sans-serif-light"
|
2017-09-04 02:44:33 +00:00
|
|
|
tools:text="@string/ExperienceUpgradeActivity_ready_for_your_closeup"
|
2015-09-29 20:14:22 +00:00
|
|
|
android:textColor="@android:color/white" />
|
|
|
|
|
|
|
|
<ImageView android:id="@+id/watermark"
|
2017-09-04 02:44:33 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-10-01 22:21:21 +00:00
|
|
|
android:layout_weight="1"
|
2015-09-29 20:14:22 +00:00
|
|
|
android:scaleType="fitCenter"
|
2017-09-04 02:44:33 +00:00
|
|
|
tools:src="@drawable/profile_splash"
|
|
|
|
android:layout_gravity="center_horizontal"/>
|
2015-09-29 20:14:22 +00:00
|
|
|
|
|
|
|
<TextView android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
2015-10-01 22:21:21 +00:00
|
|
|
android:layout_weight="2"
|
2015-09-29 20:14:22 +00:00
|
|
|
android:id="@+id/subblurb"
|
2015-10-01 22:21:21 +00:00
|
|
|
android:textSize="@dimen/onboarding_subtitle_size"
|
2015-09-29 20:14:22 +00:00
|
|
|
android:textIsSelectable="false"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:paddingLeft="20dp"
|
|
|
|
android:paddingRight="20dp"
|
|
|
|
android:fontFamily="sans-serif-light"
|
2017-09-04 02:44:33 +00:00
|
|
|
tools:text="@string/ExperienceUpgradeActivity_now_you_can_share_a_profile_photo_and_name_with_friends_on_signal"
|
2015-09-29 20:14:22 +00:00
|
|
|
android:textColor="@android:color/white" />
|
|
|
|
|
|
|
|
</LinearLayout>
|