| <?xml version="1.0" encoding="utf-8"?> |
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" |
| android:orientation="vertical"> |
| |
| <FrameLayout |
| android:id="@+id/pref_logging_container" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" /> |
| |
| <LinearLayout |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_gravity="center_horizontal" |
| android:orientation="horizontal"> |
| |
| <Button |
| android:id="@+id/debug_log_reset" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:layout_weight="1" |
| android:text="@string/reset" /> |
| |
| <Button |
| android:id="@+id/debug_log_restart" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:layout_weight="1" |
| android:text="@string/restart" /> |
| |
| </LinearLayout> |
| |
| <FrameLayout |
| android:id="@+id/logcat_container" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" /> |
| </LinearLayout> |