Android project initiated
This commit is contained in:
7
res/values/attrs.xml
Normal file
7
res/values/attrs.xml
Normal 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
5
res/values/strings.xml
Normal 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
15
res/values/styles.xml
Normal 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>
|
Reference in New Issue
Block a user