mirror of
https://github.com/oxen-io/session-android.git
synced 2025-12-25 22:57:01 +00:00
Modern-style Android chat icons (incl. secure icon)
Make the send-button appearance more similar to the default Android messenger application
This commit is contained in:
committed by
Moxie Marlinspike
parent
b05c840616
commit
674cd68ebd
24
res/drawable/send_button_background.xml
Normal file
24
res/drawable/send_button_background.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!-- pressed -->
|
||||
<item android:state_pressed="true" >
|
||||
<shape>
|
||||
<solid android:color="#FF33B5E5" />
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<!-- focused -->
|
||||
<item android:state_focused="true" >
|
||||
<shape>
|
||||
<solid android:color="#FF33B5E5" />
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<!-- default -->
|
||||
<item>
|
||||
<shape>
|
||||
<solid android:color="#00ffffff" />
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
</selector>
|
||||
Reference in New Issue
Block a user