2014-04-16 18:16:23 +02:00
|
|
|
<?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"
|
2014-09-11 16:22:33 +02:00
|
|
|
android:padding="8dp" >
|
|
|
|
|
2014-04-16 18:16:23 +02:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-09-11 16:22:33 +02:00
|
|
|
android:paddingBottom="8dp"
|
2014-04-16 18:16:23 +02:00
|
|
|
android:text="@string/clear_histor_msg"
|
2014-09-11 16:22:33 +02:00
|
|
|
android:textSize="?attr/TextSizeBody" />
|
|
|
|
|
2014-04-16 18:16:23 +02:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/end_conversation_checkbox"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-09-11 16:22:33 +02:00
|
|
|
android:text="@string/also_end_conversation" />
|
|
|
|
|
|
|
|
</LinearLayout>
|