Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:codinguser/gnucash-android into …
Browse files Browse the repository at this point in the history
…develop
  • Loading branch information
codinguser committed Jan 26, 2015
2 parents 5ca250e + e0352b2 commit 326c424
Show file tree
Hide file tree
Showing 9 changed files with 232 additions and 204 deletions.
Binary file added app/res/drawable-ldpi/clear_btn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/res/drawable-mdpi/clear_btn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
52 changes: 52 additions & 0 deletions app/res/drawable/numeric_button.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<?xml version="1.0" encoding="utf-8"?>

<!--
Copyright (c) 2014 Oleksandr Tyshkovets <olexandr.tyshkovets@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" >
<shape>
<solid
android:color="@color/default_line_indicator_selected_color" />
<corners
android:radius="200dp" />
<stroke
android:width="1dp"
android:color="@color/abs__bright_foreground_disabled_holo_light" />
</shape>
</item>
<item android:state_enabled="false" >
<shape>
<solid
android:color="@color/abs__primary_text_disable_only_holo_dark" />
<corners
android:radius="200dp" />
<stroke
android:width="1dp"
android:color="@color/abs__bright_foreground_disabled_holo_light" />
</shape>
</item>
<item>
<shape>
<solid android:color="@android:color/transparent" />
<corners
android:radius="200dp" />
<stroke
android:width="1dp"
android:color="@color/abs__bright_foreground_disabled_holo_light" />
</shape>
</item>
</selector>
Loading

0 comments on commit 326c424

Please sign in to comment.