Theme changes
This commit is contained in:
10
calculatorpp/res/drawable/gray_button.xml
Normal file
10
calculatorpp/res/drawable/gray_button.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<selector xmlns:a="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<item a:state_pressed="true"
|
||||
a:drawable="@drawable/metro_button_pressed"/>
|
||||
|
||||
<item a:drawable="@drawable/gray_button_shape"/>
|
||||
|
||||
</selector>
|
10
calculatorpp/res/drawable/gray_button_dark.xml
Normal file
10
calculatorpp/res/drawable/gray_button_dark.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<selector xmlns:a="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<item a:state_pressed="true"
|
||||
a:drawable="@drawable/metro_button_pressed"/>
|
||||
|
||||
<item a:drawable="@drawable/gray_button_dark_shape"/>
|
||||
|
||||
</selector>
|
8
calculatorpp/res/drawable/gray_button_dark_shape.xml
Normal file
8
calculatorpp/res/drawable/gray_button_dark_shape.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<shape xmlns:a="http://schemas.android.com/apk/res/android">
|
||||
<gradient a:startColor="#000000"
|
||||
a:endColor="#333333"
|
||||
a:angle="90"/>
|
||||
<corners a:radius="0dp" />
|
||||
</shape>
|
8
calculatorpp/res/drawable/gray_button_shape.xml
Normal file
8
calculatorpp/res/drawable/gray_button_shape.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<shape xmlns:a="http://schemas.android.com/apk/res/android">
|
||||
<gradient a:startColor="#071622"
|
||||
a:endColor="#253541"
|
||||
a:angle="90"/>
|
||||
<corners a:radius="0dp" />
|
||||
</shape>
|
Reference in New Issue
Block a user