2020-05-28 06:43:37 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-05-29 01:16:52 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-05-28 06:43:37 +00:00
|
|
|
android:background="@drawable/default_session_background"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:gravity="center">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="@dimen/large_spacing"
|
|
|
|
android:layout_marginTop="@dimen/large_spacing"
|
|
|
|
android:layout_marginRight="@dimen/large_spacing"
|
|
|
|
android:textSize="@dimen/small_font_size"
|
|
|
|
android:textColor="@color/text"
|
|
|
|
android:alpha="0.6"
|
|
|
|
android:textAlignment="center"
|
|
|
|
android:text="@string/activity_path_explanation" />
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_margin="@dimen/large_spacing">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/pathRowsContainer"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_centerInParent="true" />
|
|
|
|
|
2020-05-29 01:16:52 +00:00
|
|
|
<com.github.ybq.android.spinkit.SpinKitView
|
|
|
|
style="@style/SpinKitView.Large.ThreeBounce"
|
|
|
|
android:id="@+id/spinner"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
app:SpinKit_Color="@color/text" />
|
|
|
|
|
2020-05-28 06:43:37 +00:00
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<Button
|
|
|
|
style="@style/MediumProminentOutlineButton"
|
2020-06-02 05:22:32 +00:00
|
|
|
android:id="@+id/learnMoreButton"
|
2020-05-28 06:43:37 +00:00
|
|
|
android:layout_width="196dp"
|
|
|
|
android:layout_height="@dimen/medium_button_height"
|
|
|
|
android:layout_marginBottom="@dimen/medium_spacing"
|
2020-06-02 05:22:32 +00:00
|
|
|
android:text="@string/activity_path_learn_more_button_title" />
|
2020-05-28 06:43:37 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|