2022-07-05 14:44:51 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2023-02-01 22:48:02 +05:30
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2022-07-05 14:44:51 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2022-07-28 19:41:35 +05:30
|
|
|
android:layout_height="wrap_content"
|
2022-07-05 14:44:51 +05:30
|
|
|
android:orientation="vertical">
|
|
|
|
|
2022-09-24 14:29:14 +05:30
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-09-24 14:34:01 +05:30
|
|
|
app:navigationIcon="?homeAsUpIndicator"
|
2023-02-01 23:09:58 +05:30
|
|
|
app:title="@string/help" />
|
2022-09-24 14:29:14 +05:30
|
|
|
|
2023-02-01 23:06:39 +05:30
|
|
|
<ImageView
|
|
|
|
android:layout_width="120dp"
|
|
|
|
android:layout_height="120dp"
|
2022-07-05 14:44:51 +05:30
|
|
|
android:layout_gravity="center"
|
2022-09-24 14:29:14 +05:30
|
|
|
android:layout_marginTop="30dp"
|
|
|
|
android:layout_marginBottom="40dp"
|
2023-02-01 23:06:39 +05:30
|
|
|
android:src="@drawable/ic_launcher_lockscreen"
|
|
|
|
app:tint="?attr/colorSecondary"
|
|
|
|
tools:ignore="ContentDescription" />
|
2022-07-05 14:44:51 +05:30
|
|
|
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
2023-01-18 00:02:19 +05:30
|
|
|
android:id="@+id/faq"
|
2022-07-05 14:44:51 +05:30
|
|
|
style="@style/AboutCard">
|
|
|
|
|
2023-01-31 22:47:45 +05:30
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
style="@style/AboutItem"
|
|
|
|
android:text="@string/faq"
|
|
|
|
app:drawableStartCompat="@drawable/ic_help" />
|
2022-07-05 14:44:51 +05:30
|
|
|
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
|
|
android:id="@+id/matrix"
|
|
|
|
style="@style/AboutCard">
|
|
|
|
|
2023-01-31 22:47:45 +05:30
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
style="@style/AboutItem"
|
2023-02-01 22:48:02 +05:30
|
|
|
android:text="Matrix"
|
|
|
|
app:drawableStartCompat="@drawable/ic_matrix"
|
|
|
|
tools:ignore="HardcodedText" />
|
2022-07-05 14:44:51 +05:30
|
|
|
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
|
2023-02-01 22:48:02 +05:30
|
|
|
|
2023-01-18 00:02:19 +05:30
|
|
|
<com.google.android.material.card.MaterialCardView
|
2023-02-01 22:48:02 +05:30
|
|
|
android:id="@+id/mastodon"
|
2023-01-18 00:02:19 +05:30
|
|
|
style="@style/AboutCard">
|
|
|
|
|
2023-01-31 22:47:45 +05:30
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
style="@style/AboutItem"
|
2023-02-01 22:48:02 +05:30
|
|
|
android:text="Mastodon"
|
|
|
|
app:drawableStartCompat="@drawable/ic_mastodon"
|
|
|
|
tools:ignore="HardcodedText" />
|
2023-01-18 00:02:19 +05:30
|
|
|
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
|
2022-07-05 14:44:51 +05:30
|
|
|
<com.google.android.material.card.MaterialCardView
|
2023-02-01 22:48:02 +05:30
|
|
|
android:id="@+id/telegram"
|
2022-07-05 14:44:51 +05:30
|
|
|
style="@style/AboutCard">
|
|
|
|
|
2023-01-31 22:47:45 +05:30
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
style="@style/AboutItem"
|
2023-02-01 22:48:02 +05:30
|
|
|
android:text="Telegram"
|
|
|
|
app:drawableStartCompat="@drawable/ic_telegram"
|
|
|
|
tools:ignore="HardcodedText" />
|
2022-07-05 14:44:51 +05:30
|
|
|
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|