2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-07-27 18:37:33 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
2020-02-25 20:15:41 +05:30
|
|
|
android:layout_height="match_parent"
|
2021-09-12 01:28:33 +05:30
|
|
|
android:fitsSystemWindows="true">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2018-12-06 15:53:03 +05:30
|
|
|
android:id="@+id/appBarLayout"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-08-08 13:33:38 +05:30
|
|
|
android:layout_height="wrap_content"
|
2021-09-16 18:29:31 +05:30
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
app:liftOnScroll="true">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2019-10-03 00:24:39 +05:30
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
style="@style/Toolbar"
|
2022-05-26 23:54:38 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-10-03 00:24:39 +05:30
|
|
|
app:layout_collapseMode="pin"
|
2022-07-04 23:05:38 +05:30
|
|
|
app:navigationIcon="@drawable/ic_arrow_back"
|
2020-02-25 20:15:41 +05:30
|
|
|
app:title="@string/support_development"
|
2022-04-19 13:45:01 +05:30
|
|
|
app:titleTextAppearance="@style/ToolbarTextAppearanceNormal" />
|
2018-08-08 13:33:38 +05:30
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.core.widget.NestedScrollView
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-12-13 12:01:26 +05:30
|
|
|
android:overScrollMode="@integer/overScrollMode"
|
2019-04-20 10:05:22 +05:30
|
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2022-07-04 12:14:00 +05:30
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
|
|
android:id="@+id/paypal"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:clickable="true"
|
|
|
|
android:elevation="4dp"
|
|
|
|
android:focusable="true"
|
|
|
|
app:cardCornerRadius="8dp"
|
|
|
|
app:cardUseCompatPadding="true">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="50dp"
|
|
|
|
android:layout_gravity="center|top"
|
|
|
|
android:padding="8dp"
|
|
|
|
android:src="@drawable/ic_paypal" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center|bottom"
|
|
|
|
android:layout_marginTop="50dp"
|
|
|
|
android:paddingBottom="8dp"
|
|
|
|
android:text="Paypal"
|
|
|
|
android:textAppearance="?textAppearanceLabelMedium" />
|
|
|
|
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
|
|
android:id="@+id/kofi"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:clickable="true"
|
|
|
|
android:elevation="4dp"
|
|
|
|
android:focusable="true"
|
|
|
|
app:cardCornerRadius="8dp"
|
|
|
|
app:cardUseCompatPadding="true">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="50dp"
|
|
|
|
android:layout_gravity="center|top"
|
|
|
|
android:padding="8dp"
|
|
|
|
android:src="@drawable/ic_kofi" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:layout_marginTop="50dp"
|
|
|
|
android:paddingBottom="8dp"
|
|
|
|
android:text="Ko-fi"
|
|
|
|
android:textAppearance="?textAppearanceLabelMedium" />
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
</LinearLayout>
|
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
</androidx.core.widget.NestedScrollView>
|
2022-07-04 12:14:00 +05:30
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|