2017-02-21 11:17:06 +11:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<android.support.constraint.ConstraintLayout
|
|
|
|
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"
|
2017-03-20 19:42:14 +11:00
|
|
|
android:layout_height="match_parent"
|
2017-04-08 15:38:52 +05:30
|
|
|
android:background="?attr/mainTabSwapBackground">
|
2017-02-21 11:17:06 +11:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/text1"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="48dp"
|
2017-03-20 19:42:14 +11:00
|
|
|
android:layout_marginLeft="48dp"
|
2017-02-21 11:17:06 +11:00
|
|
|
android:layout_marginRight="48dp"
|
|
|
|
android:layout_marginStart="48dp"
|
2017-03-20 19:42:14 +11:00
|
|
|
android:layout_marginTop="48dp"
|
|
|
|
android:text="@string/nearby_splash__download_apps_from_people_nearby"
|
|
|
|
android:textAlignment="center"
|
2017-03-29 14:16:04 +11:00
|
|
|
android:gravity="center"
|
2017-03-20 19:42:14 +11:00
|
|
|
android:textSize="20sp"
|
2017-06-03 09:58:53 +02:00
|
|
|
android:textColor="?attr/lightGrayTextColor"
|
2017-03-20 19:42:14 +11:00
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/nearby_splash__find_people_button"
|
|
|
|
style="@style/DetailsSecondaryButtonStyle"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/text1"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
android:layout_marginTop="24dp" />
|
2017-02-21 11:17:06 +11:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/text2"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-03-20 19:42:14 +11:00
|
|
|
tools:text="@string/nearby_splash__both_parties_need_fdroid"
|
|
|
|
android:textSize="15sp"
|
2017-02-21 11:17:06 +11:00
|
|
|
android:textAlignment="center"
|
2017-03-29 14:16:04 +11:00
|
|
|
android:gravity="center"
|
2017-06-03 09:58:53 +02:00
|
|
|
android:textColor="?attr/lightGrayTextColor"
|
2017-03-20 19:42:14 +11:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/button"
|
2017-02-21 11:17:06 +11:00
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
2017-03-20 19:42:14 +11:00
|
|
|
android:layout_marginTop="24dp"
|
2017-02-21 11:17:06 +11:00
|
|
|
android:layout_marginEnd="48dp"
|
|
|
|
android:layout_marginRight="48dp"
|
|
|
|
android:layout_marginStart="48dp"
|
|
|
|
android:layout_marginLeft="48dp" />
|
|
|
|
|
2017-03-20 19:42:14 +11:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/image"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
2017-04-07 11:49:47 +10:00
|
|
|
android:src="@drawable/nearby_splash"
|
2017-03-20 19:42:14 +11:00
|
|
|
android:importantForAccessibility="no"
|
2017-02-21 11:17:06 +11:00
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
2017-03-20 19:42:14 +11:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/text2"
|
|
|
|
android:layout_marginTop="36dp"
|
2017-04-08 15:38:52 +05:30
|
|
|
android:tint="?attr/mainTabSwapSplashTint"
|
2017-03-20 19:42:14 +11:00
|
|
|
android:scaleType="fitXY" />
|
2017-02-21 11:17:06 +11:00
|
|
|
|
|
|
|
</android.support.constraint.ConstraintLayout>
|