Android project initiated

This commit is contained in:
serso
2011-06-24 01:09:13 +04:00
commit 7d66404d00
61 changed files with 1164 additions and 0 deletions

7
res/values/attrs.xml Normal file
View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="DragButton">
<attr name="textUp" format="string" />
<attr name="textDown" format="string" />
</declare-styleable>
</resources>

5
res/values/strings.xml Normal file
View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name_caption">Calculator</string>
<string name="syntax_error">Syntax error</string>
</resources>

15
res/values/styles.xml Normal file
View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="editTextInputStyle">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:typeface">monospace</item>
</style>
<style name="digitButtonStyle">
<item name="android:width">50dp</item>
<item name="android:height">50dp</item>
<item name="android:typeface">monospace</item>
</style>
</resources>