2020-05-21 08:59:21 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-05-24 03:59:25 +02:00
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-05-21 08:59:21 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-05-24 03:59:25 +02:00
|
|
|
android:id="@+id/fragment_settings_meta_container"
|
2020-05-21 08:59:21 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-05-22 18:21:30 +02:00
|
|
|
android:background="?attr/colorPrimary"
|
2020-05-21 08:59:21 +02:00
|
|
|
android:gravity="center|top"
|
|
|
|
android:orientation="vertical"
|
2020-05-22 23:32:21 +02:00
|
|
|
android:paddingTop="16sp"
|
|
|
|
android:paddingLeft="32sp"
|
|
|
|
android:paddingRight="32sp"
|
2020-05-24 03:59:25 +02:00
|
|
|
tools:context=".settings.SettingsFragmentMeta">
|
2020-05-21 08:59:21 +02:00
|
|
|
|
|
|
|
<Button
|
2020-05-24 03:59:25 +02:00
|
|
|
android:id="@+id/fragment_settings_meta_select_launcher_btn"
|
2020-05-21 08:59:21 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/settings_select_launcher"
|
|
|
|
android:textAllCaps="false" />
|
|
|
|
|
2020-05-21 09:44:37 +02:00
|
|
|
<Button
|
2020-05-24 03:59:25 +02:00
|
|
|
android:id="@+id/fragment_settings_meta_view_tutorial_btn"
|
2020-05-21 09:44:37 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/settings_show_tutorial"
|
|
|
|
android:textAllCaps="false" />
|
|
|
|
|
2020-05-21 08:59:21 +02:00
|
|
|
<Button
|
2020-05-24 03:59:25 +02:00
|
|
|
android:id="@+id/fragment_settings_meta_reset_settings_btn"
|
2020-05-21 08:59:21 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-05-21 09:20:18 +02:00
|
|
|
android:layout_marginBottom="32sp"
|
2020-05-21 08:59:21 +02:00
|
|
|
android:text="@string/settings_reset"
|
|
|
|
android:textAllCaps="false" />
|
|
|
|
|
2020-05-21 09:20:18 +02:00
|
|
|
<Button
|
2020-05-24 03:59:25 +02:00
|
|
|
android:id="@+id/fragment_settings_meta_rate_app_btn"
|
2020-05-21 09:20:18 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/settings_feedback"
|
|
|
|
android:textAllCaps="false" />
|
|
|
|
|
2020-05-21 08:59:21 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="32sp"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
2020-05-24 03:59:25 +02:00
|
|
|
android:id="@+id/fragment_settings_meta_footer_by_text"
|
2020-05-21 08:59:21 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/settings_footer_by"
|
|
|
|
android:textSize="18sp" />
|
|
|
|
|
|
|
|
<TextView
|
2020-05-24 03:59:25 +02:00
|
|
|
android:id="@+id/fragment_settings_meta_footer_website_link"
|
2020-05-21 08:59:21 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text=" Finn M Glas"
|
|
|
|
android:textColor="?attr/colorAccent"
|
|
|
|
android:textSize="18sp"
|
|
|
|
tools:ignore="HardcodedText" />
|
|
|
|
|
|
|
|
<TextView
|
2020-05-24 03:59:25 +02:00
|
|
|
android:id="@+id/fragment_settings_meta_footer_pipe_text"
|
2020-05-21 08:59:21 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text=" | "
|
|
|
|
android:textSize="18sp"
|
|
|
|
tools:ignore="HardcodedText" />
|
|
|
|
|
|
|
|
<TextView
|
2020-05-24 03:59:25 +02:00
|
|
|
android:id="@+id/fragment_settings_meta_footer_github_link"
|
2020-05-21 08:59:21 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Open Source"
|
|
|
|
android:textColor="?attr/colorAccent"
|
|
|
|
android:textSize="18sp"
|
|
|
|
tools:ignore="HardcodedText" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|