Skip to content

Commit

Permalink
Merge pull request codinguser#267 from aint/passcode_screen_redesign
Browse files Browse the repository at this point in the history
Introduced new design of the passcode lock screen
  • Loading branch information
codinguser committed Nov 19, 2014
2 parents ad36fb9 + 324ce56 commit e0352b2
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 e0352b2

Please sign in to comment.