android-calculatorpp/android-app-onscreen/res/layout/onscreen_layout.xml

51 lines
1.2 KiB
XML
Raw Normal View History

2012-11-20 15:23:54 -05:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
2013-06-26 04:22:07 -04:00
a:orientation="vertical"
style="@style/cpp_onscreen_main_layout_style">
2013-06-14 16:31:49 -04:00
<include
2013-06-26 04:22:07 -04:00
a:id="@+id/onscreen_header"
layout="@layout/onscreen_header"/>
2013-06-14 16:31:49 -04:00
<LinearLayout
2013-06-26 04:22:07 -04:00
a:id="@+id/onscreen_content"
a:orientation="vertical"
a:layout_width="match_parent"
a:layout_height="match_parent">
2013-06-14 16:31:49 -04:00
<include
2013-06-26 04:22:07 -04:00
layout="@layout/onscreen_editor"
a:layout_width="match_parent"
a:layout_height="wrap_content"/>
2013-06-14 16:31:49 -04:00
<LinearLayout
2013-06-26 04:22:07 -04:00
a:layout_weight="1"
a:layout_width="match_parent"
a:layout_height="0dp">
2013-06-14 16:31:49 -04:00
<include
2013-06-26 04:22:07 -04:00
layout="@layout/cpp_simple_button_equals"
a:layout_margin="@dimen/cpp_button_margin"
a:layout_weight="1"
a:layout_width="0dp"
a:layout_height="match_parent"/>
2013-06-14 16:31:49 -04:00
<include
2013-06-26 04:22:07 -04:00
layout="@layout/onscreen_display"
a:layout_weight="4"
a:layout_width="0dp"
a:layout_height="wrap_content"/>
2012-11-21 09:34:58 -05:00
</LinearLayout>
2013-06-14 16:31:49 -04:00
<include
2013-06-26 04:22:07 -04:00
layout="@layout/onscreen_keyboard"
a:layout_weight="4"
a:layout_width="match_parent"
a:layout_height="0dp"/>
2012-11-21 09:34:58 -05:00
</LinearLayout>
2012-11-20 15:23:54 -05:00
2013-06-26 04:22:07 -04:00
<include layout="@layout/onscreen_footer"/>
2012-11-21 03:16:33 -05:00
2012-11-20 15:23:54 -05:00
</LinearLayout>