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

40 lines
930 B
XML
Raw Normal View History

2012-10-20 08:22:25 -04: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:layout_width="match_parent"
a:layout_height="match_parent"
a:orientation="vertical"
style="@style/cpp_widget_main_layout_style">
2013-06-14 16:31:49 -04:00
<include
2013-06-26 04:22:07 -04:00
layout="@layout/widget_editor"
a:layout_weight="2"
a:layout_width="match_parent"
a:layout_height="0dp"/>
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_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/widget_display"
a:layout_weight="5"
a:layout_width="0dp"
a:layout_height="wrap_content"/>
2013-06-14 16:31:49 -04:00
</LinearLayout>
<include
2013-06-26 04:22:07 -04:00
layout="@layout/cpp_simple_keyboard"
a:layout_weight="5"
a:layout_width="match_parent"
a:layout_height="0dp"/>
2012-10-20 08:22:25 -04:00
2012-10-19 10:20:03 -04:00
</LinearLayout>