mirror of
https://github.com/gsantner/dandelion
synced 2025-12-12 07:11:11 +01:00
97 lines
No EOL
5 KiB
XML
97 lines
No EOL
5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<android.support.v7.widget.CardView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="@dimen/card_spacing"
|
|
app:cardCornerRadius="@dimen/card_corner_radius"
|
|
app:cardElevation="@dimen/card_elevation">
|
|
|
|
<LinearLayout
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_margin="@dimen/activity_horizontal_margin_half">
|
|
<TextView
|
|
android:id="@+id/settings_activity__header_more__debugging"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Caption"
|
|
android:text="@string/pref_title__sub_logging"/>
|
|
|
|
<!-- Debug Protocol -->
|
|
<RelativeLayout
|
|
android:id="@+id/settings_activity__debugging_activated"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:layout_marginBottom="@dimen/activity_vertical_margin"
|
|
android:layout_marginTop="@dimen/activity_vertical_margin"
|
|
android:clickable="true">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_toStartOf="@+id/settings_activity__debugging_activated_checkbox">
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
|
|
android:text="@string/pref_title__logging_enabled"/>
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Fix me!"/>
|
|
</LinearLayout>
|
|
<CheckBox
|
|
android:id="@+id/settings_activity__debugging_activated_checkbox"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_centerVertical="true"/>
|
|
</RelativeLayout>
|
|
|
|
<!-- Verbose debugging -->
|
|
<RelativeLayout
|
|
android:id="@+id/settings_activity__debugging_verbose"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:layout_marginBottom="@dimen/activity_vertical_margin"
|
|
android:layout_marginTop="@dimen/activity_vertical_margin"
|
|
android:clickable="true">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_toStartOf="@+id/settings_activity__debugging_verbose_checkbox">
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
|
|
android:text="@string/pref_title__logging_spam_enabled"/>
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Fix me too!"/>
|
|
</LinearLayout>
|
|
<CheckBox
|
|
android:id="@+id/settings_activity__debugging_verbose_checkbox"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_centerVertical="true"/>
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|
|
</android.support.v7.widget.CardView>
|
|
</LinearLayout>
|
|
</ScrollView> |