2013-04-01 00:43:46 +04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-09-04 11:06:14 +04:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="10dp"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
android:weightSum="1" >
|
2013-04-01 00:43:46 +04:00
|
|
|
|
2014-09-04 11:06:14 +04:00
|
|
|
<ScrollView
|
|
|
|
android:id="@+id/scrollView1"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_marginBottom="15dp"
|
|
|
|
android:layout_weight="1" >
|
2013-04-01 00:43:46 +04:00
|
|
|
|
2014-09-04 11:06:14 +04:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/logTV"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:text="@string/empty" />
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/deleteLogHistoryButton"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="50dp"
|
|
|
|
android:text="@string/prefs_log_delete_history_button" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/sendLogHistoryButton"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="50dp"
|
2014-09-17 18:46:11 +04:00
|
|
|
android:text="@string/log_send_history_button" />
|
2014-09-04 11:06:14 +04:00
|
|
|
|
|
|
|
</LinearLayout>
|