2016-11-16 11:05:20 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-02-24 01:16:14 -07:00
|
|
|
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-12-21 22:14:23 +11:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-02-24 01:16:14 -07:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2016-11-16 11:05:20 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="@dimen/details_activity_padding"
|
2018-02-24 01:16:14 -07:00
|
|
|
app:cardBackgroundColor="?attr/appDetailsCardBackground"
|
|
|
|
app:cardCornerRadius="3dp"
|
|
|
|
app:cardElevation="3dp">
|
2016-12-21 22:14:23 +11:00
|
|
|
|
2018-02-24 01:16:14 -07:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
2016-12-21 22:14:23 +11:00
|
|
|
android:layout_height="wrap_content"
|
2018-02-24 01:16:14 -07:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="@dimen/details_activity_padding">
|
2016-12-21 22:14:23 +11:00
|
|
|
|
2018-02-24 01:16:14 -07:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/donate_header"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="12dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:textAlignment="center"
|
|
|
|
android:textSize="15sp"
|
|
|
|
tools:text="F-Droid is created by F-Droid Limited and Contributors. Buy them a coffee!" />
|
|
|
|
|
|
|
|
<android.support.v7.widget.GridLayout
|
|
|
|
android:id="@+id/donation_options"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-06-16 10:59:34 +02:00
|
|
|
app:columnCount="2" />
|
2016-12-21 22:14:23 +11:00
|
|
|
|
2018-02-24 01:16:14 -07:00
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v7.widget.CardView>
|