mirror of
https://github.com/YTVanced/VancedMicroG
synced 2024-11-15 23:45:06 +00:00
134 lines
No EOL
4.7 KiB
XML
134 lines
No EOL
4.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?><!--
|
|
~ Copyright 2013-2015 µg Project Team
|
|
~
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
~ you may not use this file except in compliance with the License.
|
|
~ You may obtain a copy of the License at
|
|
~
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
~
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
~ See the License for the specific language governing permissions and
|
|
~ limitations under the License.
|
|
-->
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<TextView
|
|
android:gravity="center_horizontal"
|
|
android:paddingTop="10dp"
|
|
android:text="@string/account_manager_title"
|
|
android:textColor="?attr/colorPrimary"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<View
|
|
android:id="@+id/no_progress_bar"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginBottom="10dp"
|
|
android:background="@color/dialog_border_color"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp" />
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progress_bar"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:indeterminate="true"
|
|
android:layout_marginTop="2dp"
|
|
android:layout_marginBottom="3dp"
|
|
android:visibility="gone"
|
|
style="?android:attr/progressBarStyleHorizontal" />
|
|
|
|
<LinearLayout
|
|
android:paddingTop="15dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<FrameLayout
|
|
android:background="@drawable/circle_shape_background"
|
|
android:layout_marginEnd="-3dp"
|
|
android:layout_marginRight="-3dp"
|
|
android:layout_width="64dp"
|
|
android:layout_height="64dp"
|
|
android:padding="10dp">
|
|
|
|
<de.hdodenhof.circleimageview.CircleImageView
|
|
android:src="@drawable/ic_generic_man"
|
|
android:id="@+id/account_photo"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
</FrameLayout>
|
|
|
|
<FrameLayout
|
|
android:background="@drawable/circle_shape_background"
|
|
android:layout_marginStart="-3dp"
|
|
android:layout_marginLeft="-3dp"
|
|
android:layout_width="64dp"
|
|
android:layout_height="64dp"
|
|
android:padding="10dp">
|
|
|
|
<ImageView
|
|
android:src="@drawable/ic_microg_app"
|
|
android:id="@+id/app_icon"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
</FrameLayout>
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:padding="15dp"
|
|
android:gravity="center_horizontal"
|
|
android:textSize="18sp"
|
|
android:textColor="?attr/colorAccent"
|
|
android:text="@string/ask_scope_permission_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<ListView
|
|
android:padding="5dp"
|
|
android:id="@+id/permissions"
|
|
android:layout_weight="1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dip" />
|
|
|
|
<TextView
|
|
android:padding="10dp"
|
|
android:textColor="?attr/colorPrimary"
|
|
android:textSize="12sp"
|
|
android:text="@string/ask_permission_tos"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<LinearLayout
|
|
android:layout_gravity="end"
|
|
android:orientation="horizontal"
|
|
android:paddingRight="10dp"
|
|
android:paddingLeft="10dp"
|
|
android:paddingBottom="5dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<Button
|
|
android:id="@android:id/button2"
|
|
style="?android:attr/buttonBarButtonStyle"
|
|
android:text="@string/deny"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<Button
|
|
android:id="@android:id/button1"
|
|
style="?android:attr/buttonBarButtonStyle"
|
|
android:text="@string/allow"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |