mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-26 07:43:36 +00:00
35 lines
1.4 KiB
XML
35 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="?cardBackground"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<com.google.android.material.imageview.ShapeableImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="32dp"
|
|
app:srcCompat="@drawable/ic_location_permission_request" />
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="32dp"
|
|
android:layout_marginStart="32dp"
|
|
android:text="@string/aa_request_permission_activity_text"
|
|
android:textAlignment="center"
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Headline4"
|
|
android:textStyle="bold" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/btn_grant_permissions"
|
|
style="@style/MwmWidget.M3.Button.Primary"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="32dp"
|
|
android:layout_marginStart="32dp"
|
|
android:layout_marginTop="24dp"
|
|
android:text="@string/aa_grant_permissions" />
|
|
</LinearLayout> |