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

40 lines
896 B
XML
Raw Normal View History

2014-07-27 11:52:21 -04:00
<?xml version="1.0" encoding="utf-8"?>
2015-02-09 10:11:26 -05:00
<LinearLayout style="@style/CppMain.Widget"
xmlns:a="http://schemas.android.com/apk/res/android"
2014-07-27 11:52:21 -04:00
a:layout_width="match_parent"
a:layout_height="match_parent"
2015-02-09 10:11:26 -05:00
a:orientation="vertical">
2014-07-27 11:52:21 -04:00
<include
layout="@layout/widget_editor"
a:layout_width="match_parent"
2015-02-09 10:11:26 -05:00
a:layout_height="0dp"
a:layout_weight="2" />
2014-07-27 11:52:21 -04:00
<LinearLayout
a:layout_width="match_parent"
2015-02-09 10:11:26 -05:00
a:layout_height="0dp"
a:layout_weight="1">
2014-07-27 11:52:21 -04:00
<include
layout="@layout/cpp_simple_button_equals"
a:layout_width="0dp"
2015-02-09 10:11:26 -05:00
a:layout_height="match_parent"
a:layout_weight="1" />
2014-07-27 11:52:21 -04:00
<include
layout="@layout/widget_display"
a:layout_width="0dp"
2015-02-09 10:11:26 -05:00
a:layout_height="match_parent"
a:layout_weight="5" />
2014-07-27 11:52:21 -04:00
</LinearLayout>
<include
layout="@layout/cpp_simple_keyboard_lockscreen"
a:layout_width="match_parent"
2015-02-09 10:11:26 -05:00
a:layout_height="0dp"
a:layout_weight="4" />
2014-07-27 11:52:21 -04:00
</LinearLayout>