adding some initial coloring at the incoming and outgoing messages
This commit is contained in:
parent
fc3e72d390
commit
d8b00aa4c9
6 changed files with 41 additions and 1 deletions
12
app/src/main/res/drawable/item_received_background.xml
Normal file
12
app/src/main/res/drawable/item_received_background.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<corners
|
||||
android:bottomRightRadius="@dimen/normal_margin"
|
||||
android:topLeftRadius="@dimen/normal_margin"
|
||||
android:topRightRadius="@dimen/normal_margin" />
|
||||
|
||||
<solid android:color="@color/activated_item_foreground" />
|
||||
|
||||
</shape>
|
||||
12
app/src/main/res/drawable/item_sent_background.xml
Normal file
12
app/src/main/res/drawable/item_sent_background.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<corners
|
||||
android:bottomLeftRadius="@dimen/normal_margin"
|
||||
android:topLeftRadius="@dimen/normal_margin"
|
||||
android:topRightRadius="@dimen/normal_margin" />
|
||||
|
||||
<solid android:color="@color/color_primary" />
|
||||
|
||||
</shape>
|
||||
Loading…
Add table
Add a link
Reference in a new issue