android-calculatorpp/app/src/main/res/layout/onscreen_layout_material.xml

50 lines
1.4 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
2016-01-04 06:39:25 -05:00
xmlns:a="http://schemas.android.com/apk/res/android"
style="@style/CppMain.Onscreen"
a:orientation="vertical">
<include
a:id="@+id/onscreen_header"
layout="@layout/onscreen_header_material" />
<LinearLayout
a:id="@+id/onscreen_content"
a:layout_width="match_parent"
a:layout_height="match_parent"
a:orientation="vertical">
<include
layout="@layout/onscreen_editor"
a:layout_width="match_parent"
a:layout_height="wrap_content" />
<LinearLayout
a:layout_width="match_parent"
a:layout_height="0dp"
a:layout_weight="1"
a:baselineAligned="false">
<include
layout="@layout/cpp_simple_button_equals_material"
a:layout_width="0dp"
a:layout_height="match_parent"
a:layout_weight="1" />
<include
layout="@layout/onscreen_display"
a:layout_width="0dp"
2016-02-06 17:57:00 -05:00
a:layout_height="match_parent"
2016-03-20 09:29:58 -04:00
a:layout_weight="5" />
2016-01-04 06:39:25 -05:00
</LinearLayout>
<include
2016-03-20 09:29:58 -04:00
layout="@layout/widget_keyboard_material"
2016-01-04 06:39:25 -05:00
a:layout_width="match_parent"
a:layout_height="0dp"
2016-03-20 09:29:58 -04:00
a:layout_weight="5" />
2016-01-04 06:39:25 -05:00
</LinearLayout>
</LinearLayout>