android-calculatorpp/android-app/res/layout/calculator_messages_dialog.xml

34 lines
991 B
XML
Raw Normal View History

2012-11-17 12:58:48 -05:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
2012-11-17 15:39:04 -05:00
a:layout_width="wrap_content"
a:layout_height="wrap_content"
2012-11-18 08:33:05 -05:00
style="?cpp_dialog_style"
2012-11-17 12:58:48 -05:00
a:orientation="vertical">
<LinearLayout
a:id="@+id/calculation_messages_container"
a:layout_width="match_parent"
a:layout_height="wrap_content"
a:orientation="vertical"/>
<CheckBox
a:id="@+id/do_not_show_calculation_messages_checkbox"
a:text="@string/do_not_show_messages_in_session"
a:layout_width="match_parent"
a:layout_height="wrap_content"/>
<LinearLayout
a:layout_width="match_parent"
a:layout_height="wrap_content"
a:orientation="horizontal"
a:gravity="center">
2012-11-18 07:58:33 -05:00
<Button a:id="@+id/close_button"
2012-11-17 12:58:48 -05:00
a:layout_width="wrap_content"
a:layout_height="wrap_content"
2012-11-18 07:58:33 -05:00
a:text="@string/close"/>
2012-11-17 12:58:48 -05:00
</LinearLayout>
</LinearLayout>