37 lines
1.1 KiB
XML
37 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
|
|
a:id="@+id/main_fragment_layout"
|
|
style="?cpp_fragment_layout_style"
|
|
a:layout_width="wrap_content"
|
|
a:layout_gravity="center_horizontal"
|
|
a:layout_height="match_parent"
|
|
a:orientation="vertical">
|
|
|
|
<include layout="@layout/ad" />
|
|
|
|
<TextView a:text="@string/cpp_plot_range_x_min"
|
|
a:layout_width="match_parent"
|
|
a:layout_height="wrap_content"/>
|
|
|
|
<EditText a:id="@+id/cpp_plot_range_x_min_editext"
|
|
a:inputType="numberDecimal"
|
|
a:layout_width="match_parent"
|
|
a:layout_height="wrap_content"/>
|
|
|
|
<TextView a:text="@string/cpp_plot_range_x_max"
|
|
a:layout_width="match_parent"
|
|
a:layout_height="wrap_content"/>
|
|
|
|
<EditText a:id="@+id/cpp_plot_range_x_max_editext"
|
|
a:inputType="numberDecimal"
|
|
a:layout_width="match_parent"
|
|
a:layout_height="wrap_content"/>
|
|
|
|
|
|
<Button a:id="@+id/cpp_ok_button"
|
|
a:text="@string/ok"
|
|
a:layout_width="match_parent"
|
|
a:layout_height="wrap_content"/>
|
|
|
|
</LinearLayout> |