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

42 lines
906 B
XML
Raw Normal View History

2012-10-20 08:22:25 -04:00
<?xml version="1.0" encoding="utf-8"?>
2015-02-18 16:59:17 -05:00
<LinearLayout
style="@style/CppMain.Widget"
2015-02-09 10:11:26 -05:00
xmlns:a="http://schemas.android.com/apk/res/android"
a:layout_width="match_parent"
a:layout_height="match_parent"
a:orientation="vertical">
2013-06-14 16:31:49 -04:00
<include
2015-02-09 10:11:26 -05:00
layout="@layout/widget_editor"
a:layout_width="match_parent"
a:layout_height="0dp"
2015-02-18 16:59:17 -05:00
a:layout_weight="2"/>
2013-06-14 16:31:49 -04:00
<LinearLayout
2015-02-09 10:11:26 -05:00
a:layout_width="match_parent"
a:layout_height="0dp"
2015-02-19 05:23:07 -05:00
a:layout_weight="1"
a:baselineAligned="false">
2013-06-14 16:31:49 -04:00
<include
2015-02-09 10:11:26 -05:00
layout="@layout/cpp_simple_button_equals"
a:layout_width="0dp"
a:layout_height="match_parent"
2015-02-18 16:59:17 -05:00
a:layout_weight="1"/>
2013-06-14 16:31:49 -04:00
<include
2015-02-09 10:11:26 -05:00
layout="@layout/widget_display"
a:layout_width="0dp"
a:layout_height="wrap_content"
2015-02-18 16:59:17 -05:00
a:layout_weight="5"/>
2013-06-14 16:31:49 -04:00
</LinearLayout>
<include
2015-06-18 05:55:53 -04:00
layout="@layout/widget_keyboard"
2015-02-09 10:11:26 -05:00
a:layout_width="match_parent"
a:layout_height="0dp"
2015-02-18 16:59:17 -05:00
a:layout_weight="5"/>
2012-10-20 08:22:25 -04:00
2012-10-19 10:20:03 -04:00
</LinearLayout>