2018-07-30 17:04:43 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
2019-02-28 23:16:50 +01:00
|
|
|
tools:context=".plugins.general.maintenance.activities.LogSettingActivity">
|
2018-07-30 17:04:43 +02:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/logsettings_reset"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="15dp"
|
|
|
|
android:text="@string/resettodefaults" />
|
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/logsettings_placeholder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:orientation="vertical" />
|
2018-07-30 17:04:43 +02:00
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
</LinearLayout>
|