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

55 lines
1.4 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"
2013-06-14 16:31:49 -04:00
a:layout_width="fill_parent"
a:layout_height="fill_parent">
2011-12-18 08:05:44 -05:00
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
2013-06-14 16:31:49 -04:00
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"
style="@style/cpp_default_text_size"
a:text="@string/c_history_expression" />
<TextView
a:id="@+id/history_edit_expression"
a:layout_width="fill_parent"
a:padding="6dp"
a:textStyle="bold"
a:layout_height="wrap_content"
style="@style/cpp_default_text_size"></TextView>
<TextView
a:layout_height="fill_parent"
a:layout_width="fill_parent"
style="@style/cpp_default_text_size"
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"
a:minLines="4"
a:maxLines="4"
a:gravity="top|left"
style="@style/cpp_default_text_size"></EditText>
2011-12-18 08:05:44 -05:00
</LinearLayout>
</ScrollView>