mirror of
https://github.com/oxen-io/session-android.git
synced 2025-12-03 04:22:23 +00:00
Revert "Remove unused resources"
AS seems to have miscalculated
This reverts commit 344af622b7.
This commit is contained in:
BIN
res/drawable/background_pane.9.png
Normal file
BIN
res/drawable/background_pane.9.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 421 B |
5
res/drawable/blocked_indicator_background.xml
Normal file
5
res/drawable/blocked_indicator_background.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="@color/white" />
|
||||
<corners android:radius="4dp" />
|
||||
</shape>
|
||||
5
res/drawable/compose_background.xml
Normal file
5
res/drawable/compose_background.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="@null" />
|
||||
</shape>
|
||||
5
res/drawable/light_touch_highlight_background.xml
Normal file
5
res/drawable/light_touch_highlight_background.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_pressed="true" android:drawable="@color/light_button_highlight" />
|
||||
<item android:drawable="@color/light_button" />
|
||||
</selector>
|
||||
20
res/drawable/pill_button.xml
Normal file
20
res/drawable/pill_button.xml
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
|
||||
<corners
|
||||
android:bottomLeftRadius="30dp"
|
||||
android:bottomRightRadius="30dp"
|
||||
android:radius="60dp"
|
||||
android:topLeftRadius="30dp"
|
||||
android:topRightRadius="30dp" />
|
||||
|
||||
<solid android:color="#ffffff" />
|
||||
|
||||
<padding
|
||||
android:bottom="0dp"
|
||||
android:left="0dp"
|
||||
android:right="0dp"
|
||||
android:top="0dp" />
|
||||
|
||||
</shape>
|
||||
5
res/drawable/progress_background.xml
Normal file
5
res/drawable/progress_background.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
<solid android:color="#99000000"/>
|
||||
</shape>
|
||||
Reference in New Issue
Block a user