RetroMusicPlayer/app/src/main/res/layout/activity_donation.xml

97 lines
4 KiB
XML
Raw Normal View History

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"
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
<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"
app:layout_collapseMode="pin"
app:navigationIcon="@drawable/ic_arrow_back"
2020-02-25 20:15:41 +05:30
app:title="@string/support_development"
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"
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>