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

42 lines
1.1 KiB
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
2016-01-04 06:39:25 -05:00
xmlns:a="http://schemas.android.com/apk/res/android"
style="@style/CppMain.Widget"
a:layout_width="match_parent"
a:layout_height="match_parent"
a:orientation="vertical">
<include
layout="@layout/widget_editor"
a:layout_width="match_parent"
a:layout_height="0dp"
a:layout_weight="2" />
<LinearLayout
a:layout_width="match_parent"
a:layout_height="0dp"
a:layout_weight="1"
a:baselineAligned="false">
<include
layout="@layout/cpp_simple_button_equals"
a:layout_width="0dp"
a:layout_height="match_parent"
a:layout_weight="1" />
<include
layout="@layout/widget_display"
a:layout_width="0dp"
2016-02-06 17:57:00 -05:00
a:layout_height="match_parent"
2016-01-04 06:39:25 -05:00
a:layout_weight="5" />
</LinearLayout>
<include
layout="@layout/widget_keyboard"
a:layout_width="match_parent"
a:layout_height="0dp"
a:layout_weight="5" />
2012-10-20 08:22:25 -04:00
2012-10-19 10:20:03 -04:00
</LinearLayout>