2020-05-21 08:59:21 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-05-24 20:24:44 +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"
|
2020-05-24 20:24:44 +02:00
|
|
|
xmlns:custom="http://schemas.android.com/apk/res-auto"
|
2020-05-21 08:59:21 +02:00
|
|
|
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:paddingLeft="32sp"
|
2020-05-24 20:24:44 +02:00
|
|
|
android:paddingTop="16sp"
|
2020-05-22 23:32:21 +02:00
|
|
|
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" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="32sp"
|
2020-05-25 20:59:07 +02:00
|
|
|
android:layout_marginBottom="32sp"
|
2020-05-24 20:24:44 +02:00
|
|
|
android:gravity="center"
|
2020-05-21 08:59:21 +02:00
|
|
|
android:orientation="horizontal">
|
|
|
|
|
2020-05-24 20:24:44 +02:00
|
|
|
<com.finnmglas.launcher.extern.FontAwesome
|
|
|
|
android:id="@+id/fragment_settings_meta_footer_play_icon"
|
2020-05-21 08:59:21 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-05-24 20:24:44 +02:00
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
android:layout_marginRight="8dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center"
|
|
|
|
android:includeFontPadding="true"
|
|
|
|
android:paddingLeft="16sp"
|
|
|
|
android:paddingRight="16sp"
|
|
|
|
android:text="@string/fab_google_play"
|
2020-05-21 08:59:21 +02:00
|
|
|
android:textColor="?attr/colorAccent"
|
2020-05-24 20:24:44 +02:00
|
|
|
android:textSize="40sp"
|
|
|
|
custom:type="brands" />
|
2020-05-21 08:59:21 +02:00
|
|
|
|
2020-05-24 20:24:44 +02:00
|
|
|
<com.finnmglas.launcher.extern.FontAwesome
|
|
|
|
android:id="@+id/fragment_settings_meta_footer_github_icon"
|
2020-05-21 08:59:21 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-05-24 20:24:44 +02:00
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
android:layout_marginRight="8dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center"
|
|
|
|
android:includeFontPadding="true"
|
|
|
|
android:paddingLeft="16sp"
|
|
|
|
android:paddingRight="16sp"
|
|
|
|
android:text="@string/fab_github"
|
|
|
|
android:textColor="?attr/colorAccent"
|
|
|
|
android:textSize="40sp"
|
|
|
|
custom:type="brands" />
|
2020-05-21 08:59:21 +02:00
|
|
|
|
2020-05-24 20:24:44 +02:00
|
|
|
<com.finnmglas.launcher.extern.FontAwesome
|
|
|
|
android:id="@+id/fragment_settings_meta_footer_globe_icon"
|
2020-05-21 08:59:21 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-05-24 20:24:44 +02:00
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
android:layout_marginRight="8dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center"
|
|
|
|
android:includeFontPadding="true"
|
|
|
|
android:paddingLeft="16sp"
|
|
|
|
android:paddingRight="16sp"
|
|
|
|
android:text="@string/fas_globe"
|
2020-05-21 08:59:21 +02:00
|
|
|
android:textColor="?attr/colorAccent"
|
2020-05-24 20:24:44 +02:00
|
|
|
android:textSize="40sp"
|
|
|
|
custom:type="solid" />
|
|
|
|
|
2020-05-21 08:59:21 +02:00
|
|
|
</LinearLayout>
|
2020-05-24 20:24:44 +02:00
|
|
|
|
2020-05-25 20:59:07 +02:00
|
|
|
<Button
|
|
|
|
android:id="@+id/fragment_settings_meta_contact_btn"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="32sp"
|
|
|
|
android:text="@string/settings_meta_contact"
|
|
|
|
android:textAllCaps="false" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/fragment_settings_meta_donate_btn"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/settings_meta_donate"
|
|
|
|
android:textAllCaps="false" />
|
|
|
|
|
2020-05-21 08:59:21 +02:00
|
|
|
</LinearLayout>
|