Magisk/app/src/full/res/layout/fragment_magisk.xml

224 lines
9.8 KiB
XML
Raw Normal View History

2016-08-23 11:39:18 +02:00
<?xml version="1.0" encoding="utf-8"?>
2018-09-10 08:27:45 +02:00
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/swipeRefreshLayout"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
2017-01-26 20:32:15 +01:00
<ScrollView
2016-09-30 12:22:43 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="8dp"
android:orientation="vertical">
2016-08-23 11:39:18 +02:00
<LinearLayout
android:id="@+id/linearLayout"
2016-08-23 11:39:18 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
2018-09-10 08:27:45 +02:00
<androidx.cardview.widget.CardView
2017-05-23 10:51:23 +02:00
android:id="@+id/safetyNet_card"
2017-05-19 21:04:14 +02:00
style="?attr/cardStyle"
2016-08-23 11:39:18 +02:00
android:layout_width="match_parent"
2017-05-21 06:16:38 +02:00
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:layout_marginTop="4dp"
android:layout_marginEnd="5dp"
android:layout_marginBottom="4dp"
2017-05-19 21:04:14 +02:00
app:cardCornerRadius="@dimen/card_corner_radius"
app:cardElevation="@dimen/card_elevation">
<LinearLayout
2016-08-23 11:39:18 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2016-08-23 11:39:18 +02:00
android:orientation="vertical">
2017-05-19 21:04:14 +02:00
<RelativeLayout
android:id="@+id/safetyNet_title"
android:layout_width="match_parent"
2017-05-19 21:04:14 +02:00
android:layout_height="match_parent">
<ImageView
2017-05-19 21:04:14 +02:00
android:id="@+id/safetyNet_refresh"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_centerVertical="true"
android:layout_margin="15dp"
android:layout_toStartOf="@+id/safetyNet_status"
2018-12-27 10:28:06 +01:00
app:srcCompat="@drawable/ic_refresh" />
<ProgressBar
2016-12-24 20:05:22 +01:00
android:id="@+id/safetyNet_check_progress"
2017-05-19 21:04:14 +02:00
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_centerVertical="true"
android:layout_margin="15dp"
android:layout_toStartOf="@+id/safetyNet_status"
android:visibility="gone" />
<TextView
android:id="@+id/safetyNet_status"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2017-05-19 21:04:14 +02:00
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:gravity="center"
android:minWidth="175dp"
android:padding="6dp"
android:text="@string/safetyNet_check_text"
android:textStyle="bold" />
</RelativeLayout>
<LinearLayout
android:id="@+id/expand_layout"
android:layout_width="match_parent"
2016-08-26 12:45:35 +02:00
android:layout_height="wrap_content"
2017-05-19 21:04:14 +02:00
android:orientation="vertical"
android:paddingStart="10dp"
android:paddingEnd="10dp">
2017-05-19 21:04:14 +02:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal">
<ImageView
android:id="@+id/cts_status_icon"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_marginStart="10dp"
android:layout_marginTop="5dp"
android:layout_marginEnd="10dp"
android:layout_marginBottom="5dp" />
2017-05-19 21:04:14 +02:00
<TextView
android:id="@+id/cts_status"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:minWidth="150dp"
android:padding="6dp"
android:textStyle="bold" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal">
<ImageView
android:id="@+id/basic_status_icon"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_margin="10dp" />
<TextView
android:id="@+id/basic_status"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:minWidth="150dp"
android:padding="6dp"
android:textStyle="bold" />
</LinearLayout>
</LinearLayout>
2016-08-23 11:39:18 +02:00
</LinearLayout>
2016-08-23 11:39:18 +02:00
2018-09-10 08:27:45 +02:00
</androidx.cardview.widget.CardView>
2016-08-23 11:39:18 +02:00
2018-09-10 08:27:45 +02:00
<androidx.cardview.widget.CardView
2017-05-21 06:16:38 +02:00
android:id="@+id/install_option_card"
style="?attr/cardStyle"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:layout_marginStart="5dp"
android:layout_marginTop="4dp"
android:layout_marginEnd="5dp"
android:layout_marginBottom="4dp"
android:visibility="gone"
2017-05-21 06:16:38 +02:00
app:cardCornerRadius="@dimen/card_corner_radius"
app:cardElevation="@dimen/card_elevation">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="15dp"
android:layout_marginBottom="15dp"
2017-05-21 06:16:38 +02:00
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:paddingBottom="10dp"
android:text="@string/advanced_settings_title"
android:textStyle="bold" />
<CheckBox
android:id="@+id/keep_force_enc"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="50dp"
android:layout_marginEnd="50dp"
2017-05-21 06:16:38 +02:00
android:text="@string/keep_force_encryption" />
<CheckBox
android:id="@+id/keep_verity"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="50dp"
android:layout_marginEnd="50dp"
2017-05-21 06:16:38 +02:00
android:text="@string/keep_dm_verity" />
</LinearLayout>
2018-09-10 08:27:45 +02:00
</androidx.cardview.widget.CardView>
2017-05-21 06:16:38 +02:00
2018-09-10 08:27:45 +02:00
<androidx.cardview.widget.CardView
2017-05-21 06:16:38 +02:00
android:id="@+id/uninstall_button"
style="?attr/cardStyle"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:layout_marginBottom="4dp"
android:layout_marginEnd="5dp"
android:layout_marginStart="5dp"
android:layout_marginTop="4dp"
android:clickable="true"
android:foreground="?android:attr/selectableItemBackground"
app:cardCornerRadius="@dimen/card_corner_radius"
2017-11-17 04:49:20 +01:00
app:cardElevation="@dimen/card_elevation"
android:focusable="true">
2017-05-21 06:16:38 +02:00
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:layout_marginTop="10dp"
android:ems="10"
android:fontFamily="sans-serif"
android:gravity="center"
android:text="@string/uninstall"
android:textAllCaps="false"
android:textSize="20sp"
android:textStyle="bold" />
2018-09-10 08:27:45 +02:00
</androidx.cardview.widget.CardView>
2017-05-21 06:16:38 +02:00
</LinearLayout>
2016-08-27 21:52:03 +02:00
</ScrollView>
2016-08-23 11:39:18 +02:00
2018-09-10 08:27:45 +02:00
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>