Added support for Android 1.5.
Added larger keypad entry screen.
This commit is contained in:
parent
258d1ee693
commit
9891a8ffd0
8 changed files with 62 additions and 47 deletions
22
default.properties
Normal file
22
default.properties
Normal file
|
@ -0,0 +1,22 @@
|
|||
# This file is automatically generated by Android Tools.
|
||||
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
|
||||
#
|
||||
# This file must be checked in Version Control Systems.
|
||||
#
|
||||
# To customize properties used by the Ant build system use,
|
||||
# "build.properties", and override values to adapt the script to your
|
||||
# project structure.
|
||||
|
||||
# Project target.
|
||||
target=android-2
|
||||
# apk configurations. This property allows creation of APK files with limited
|
||||
# resources. For example, if your application contains many locales and
|
||||
# you wish to release multiple smaller apks instead of a large one, you can
|
||||
# define configuration to create apks with limited language sets.
|
||||
# Format is a comma separated list of configuration names. For each
|
||||
# configuration, a property will declare the resource configurations to
|
||||
# include. Example:
|
||||
# apk-configurations=european,northamerica
|
||||
# apk-config-european=en,fr,it,de,es
|
||||
# apk-config-northamerica=en,es
|
||||
apk-configurations=
|
|
@ -1,55 +1,48 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent" android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
<EditText android:layout_height="wrap_content"
|
||||
android:layout_width="fill_parent" android:layout_marginLeft="20dip"
|
||||
android:scrollHorizontally="true" android:autoText="false"
|
||||
android:capitalize="none" android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:layout_marginRight="20dip" android:numeric="decimal"
|
||||
android:gravity="right" android:id="@+id/calc_edit_fld" />
|
||||
android:orientation="vertical" android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content" android:paddingLeft="10dip"
|
||||
android:paddingRight="10dip">
|
||||
<EditText android:scrollHorizontally="true"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:id="@+id/calc_edit_fld" android:autoText="false"
|
||||
android:capitalize="none"
|
||||
android:layout_height="fill_parent" android:numeric="decimal"
|
||||
android:layout_width="fill_parent" android:gravity="right"/>
|
||||
<TableLayout android:id="@+id/TableLayout01"
|
||||
android:layout_width="wrap_content" android:layout_height="wrap_content">
|
||||
<TableRow android:id="@+id/TableRow01" android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" android:layout_marginLeft="20dip"
|
||||
android:layout_marginRight="20dip">
|
||||
<Button android:id="@+id/Button01" android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" android:text="1"></Button>
|
||||
<Button android:id="@+id/Button02" android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" android:text="2"></Button>
|
||||
<Button android:id="@+id/Button03" android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" android:text="3"></Button>
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_height="wrap_content" android:layout_width="wrap_content">
|
||||
<TableRow android:id="@+id/TableRow01">
|
||||
<Button android:id="@+id/Button01" android:text="1"
|
||||
android:width="80dip"></Button>
|
||||
<Button android:id="@+id/Button02" android:text="2"
|
||||
android:width="80dip"></Button>
|
||||
<Button android:id="@+id/Button03" android:text="3"
|
||||
android:width="80dip"></Button>
|
||||
</TableRow>
|
||||
<TableRow android:id="@+id/TableRow02" android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" android:layout_marginRight="20dip"
|
||||
android:layout_marginLeft="20dip">
|
||||
<Button android:id="@+id/Button04" android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" android:text="4"></Button>
|
||||
<Button android:id="@+id/Button05" android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" android:text="5"></Button>
|
||||
<Button android:id="@+id/Button06" android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" android:text="6"></Button>
|
||||
<TableRow android:id="@+id/TableRow02">
|
||||
<Button android:id="@+id/Button04" android:text="4"
|
||||
android:width="80dip"></Button>
|
||||
<Button android:id="@+id/Button05" android:text="5"
|
||||
android:width="80dip"></Button>
|
||||
<Button android:id="@+id/Button06" android:text="6"
|
||||
android:width="80dip"></Button>
|
||||
</TableRow>
|
||||
<TableRow android:id="@+id/TableRow03" android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" android:layout_marginLeft="20dip">
|
||||
<Button android:id="@+id/Button07" android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" android:text="7"></Button>
|
||||
<Button android:id="@+id/Button08" android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" android:text="8"></Button>
|
||||
<Button android:id="@+id/Button09" android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" android:text="9"></Button>
|
||||
<TableRow android:id="@+id/TableRow03">
|
||||
<Button android:id="@+id/Button07" android:text="7"
|
||||
android:width="80dip"></Button>
|
||||
<Button android:id="@+id/Button08" android:text="8"
|
||||
android:width="80dip"></Button>
|
||||
<Button android:id="@+id/Button09" android:text="9"
|
||||
android:width="80dip"></Button>
|
||||
</TableRow>
|
||||
<TableRow android:id="@+id/TableRow04" android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" android:layout_marginLeft="20dip">
|
||||
<Button android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" android:id="@+id/ButtonDot"
|
||||
android:text="."></Button>
|
||||
<Button android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" android:id="@+id/Button0"
|
||||
android:text="0"></Button>
|
||||
<ImageButton android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" android:id="@+id/ButtonBS"
|
||||
android:src="@drawable/delete"></ImageButton>
|
||||
<TableRow android:id="@+id/TableRow04">
|
||||
<Button android:id="@+id/ButtonDot" android:text="."
|
||||
android:width="80dip"></Button>
|
||||
<Button android:id="@+id/Button0" android:text="0"
|
||||
android:width="80dip"></Button>
|
||||
<ImageButton android:id="@+id/ButtonBS" android:src="@drawable/delete"
|
||||
android:width="80dip"></ImageButton>
|
||||
</TableRow>
|
||||
</TableLayout>
|
||||
</LinearLayout>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_name">Tiproid</string>
|
||||
<string name="about_txt">© 2008 Erik C. Thauvin\nAll Rights Reserved\n\nerik@thauvin.net\n\nhttp://mobile.thauvin.net</string>
|
||||
<string name="about_txt">© 2008-9 Erik C. Thauvin\nAll Rights Reserved\n\nerik@thauvin.net\n\nhttp://mobile.thauvin.net</string>
|
||||
<string name="about_menu_txt">About</string>
|
||||
<string name="alert_dialog_ok">OK</string>
|
||||
<string name="alert_dialog_cancel">Cancel</string>
|
||||
|
|
BIN
screenshots/0.3/1.psd
Normal file
BIN
screenshots/0.3/1.psd
Normal file
Binary file not shown.
BIN
screenshots/0.3/2.psd
Normal file
BIN
screenshots/0.3/2.psd
Normal file
Binary file not shown.
BIN
screenshots/0.3/3.psd
Normal file
BIN
screenshots/0.3/3.psd
Normal file
Binary file not shown.
BIN
screenshots/0.3/tiproid.gif
Normal file
BIN
screenshots/0.3/tiproid.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 353 KiB |
Loading…
Add table
Add a link
Reference in a new issue