Fix/emoji reactions crash (#1646)
* Fixing crash on sdk =28 for emoji reactions * Proper styling of reactions Making sure we display the public key when there is no name * Making sure we display the emoji that was long pressedpull/1650/head
parent
1393335121
commit
d1c4283f42
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<size android:height="1dp"/>
|
||||
<solid android:color="?android:textColorTertiary"/>
|
||||
<solid android:color="?colorDividerBackground"/>
|
||||
</shape>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="1000dp" />
|
||||
<solid android:color="?reactionsPillNormalBackground" />
|
||||
<stroke android:width="1dp" android:color="?colorPrimary" />
|
||||
</shape>
|
@ -1,9 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_height="50dp"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:orientation="horizontal"
|
||||
android:gravity="center_horizontal"
|
||||
android:padding="@dimen/small_spacing"
|
||||
android:gravity="center"
|
||||
android:id="@+id/footer_view_emoji_count"
|
||||
android:layout_weight="1" />
|
||||
android:layout_weight="1"
|
||||
style="@style/Signal.Text.Preview"
|
||||
android:textColor="?android:textColorTertiary"
|
||||
tools:text="And 1244 other have reacted to this message" />
|
@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="32dp"
|
||||
android:paddingStart="8dp"
|
||||
android:paddingEnd="8dp"
|
||||
android:gravity="center">
|
||||
|
||||
<org.thoughtcrime.securesms.components.emoji.EmojiImageView
|
||||
android:scaleType="centerInside"
|
||||
android:id="@+id/reactions_pill_emoji"
|
||||
android:layout_width="20dp"
|
||||
android:layout_height="20dp"
|
||||
android:layout_gravity="center_vertical"/>
|
||||
|
||||
<View
|
||||
android:id="@+id/reactions_pill_spacer"
|
||||
android:layout_width="10dp"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/reactions_pill_count"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="14sp"
|
||||
android:fontFamily="sans-serif-medium"
|
||||
android:textColor="?android:textColorTertiary"
|
||||
android:layout_gravity="center_vertical"
|
||||
tools:text="23"
|
||||
tools:ignore="SpUsage" />
|
||||
|
||||
</LinearLayout>
|
Loading…
Reference in New Issue