android-calculatorpp/android-app/res/layout/history_edit.xml

53 lines
1.5 KiB
XML
Raw Normal View History

2011-12-18 08:05:44 -05:00
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (c) 2009-2011. Created by serso aka se.solovyev.
~ For more information, please, contact se.solovyev@gmail.com
~ or visit http://se.solovyev.org
-->
<ScrollView xmlns:a="http://schemas.android.com/apk/res/android"
a:layout_width="fill_parent"
a:layout_height="fill_parent">
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/history_edit"
a:orientation="vertical"
a:layout_width="fill_parent"
a:layout_height="fill_parent"
a:scrollbars="vertical"
a:scrollbarAlwaysDrawVerticalTrack="true">
<TextView a:layout_height="fill_parent"
a:layout_width="fill_parent"
a:padding="6dp"
2012-11-18 07:58:33 -05:00
style="@style/cpp_default_text_size"
2011-12-18 08:05:44 -05:00
a:text="@string/c_history_expression"/>
<TextView a:id="@+id/history_edit_expression"
a:layout_width="fill_parent"
2011-12-18 15:58:42 -05:00
a:padding="6dp"
a:textStyle="bold"
2011-12-18 08:05:44 -05:00
a:layout_height="wrap_content"
2012-11-18 07:58:33 -05:00
style="@style/cpp_default_text_size">
2011-12-18 08:05:44 -05:00
</TextView>
<TextView a:layout_height="fill_parent"
a:layout_width="fill_parent"
2012-11-18 07:58:33 -05:00
style="@style/cpp_default_text_size"
2011-12-18 08:05:44 -05:00
a:padding="6dp"
a:text="@string/c_history_comment"/>
<EditText a:id="@+id/history_edit_comment"
a:layout_width="fill_parent"
a:layout_height="wrap_content"
2011-12-18 15:58:42 -05:00
a:minLines="4"
a:maxLines="4"
a:gravity="top|left"
2012-11-18 07:58:33 -05:00
style="@style/cpp_default_text_size">
2011-12-18 08:05:44 -05:00
</EditText>
</LinearLayout>
</ScrollView>