Initial commit
This commit is contained in:
commit
1f9a97929e
62 changed files with 99775 additions and 0 deletions
9
res/drawable/bggradient.xml
Normal file
9
res/drawable/bggradient.xml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<!-- Gradient Bg for bootan -->
|
||||
<gradient
|
||||
android:startColor="#424542"
|
||||
android:endColor="#A5A2A5"
|
||||
android:angle="90" />
|
||||
</shape>
|
||||
8
res/drawable/button_custom.xml
Normal file
8
res/drawable/button_custom.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:drawable="@drawable/button_grad_press"
|
||||
android:state_pressed="true" />
|
||||
<item android:drawable="@drawable/button_grad"
|
||||
android:state_focused="true" />
|
||||
<item android:drawable="@drawable/button_grad" />
|
||||
</selector>
|
||||
9
res/drawable/button_grad.xml
Normal file
9
res/drawable/button_grad.xml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<!-- Gradient Bg for bootan -->
|
||||
<gradient
|
||||
android:startColor="#181C18"
|
||||
android:endColor="#6B6D6B"
|
||||
android:angle="90" />
|
||||
</shape>
|
||||
9
res/drawable/button_grad_press.xml
Normal file
9
res/drawable/button_grad_press.xml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<!-- Gradient Bg for bootan -->
|
||||
<gradient
|
||||
android:startColor="#8C8E8C"
|
||||
android:endColor="#636163"
|
||||
android:angle="90" />
|
||||
</shape>
|
||||
Loading…
Add table
Add a link
Reference in a new issue