Fix colors for quick replies

This commit is contained in:
tom79 2019-11-12 20:14:58 +01:00
parent 31c43e3912
commit b46178aedc
2 changed files with 4 additions and 1 deletions

View File

@ -2044,6 +2044,9 @@ public class StatusListAdapter extends RecyclerView.Adapter implements OnPostAct
holder.translation_label.setBackgroundColor(ThemeHelper.getAttColor(context, R.attr.cardviewColor));
}
}
if( statusColor != -1) {
holder.quick_reply_container.setBackgroundColor(statusColor);
}
if (type == RetrieveFeedsAsyncTask.Type.CONVERSATION && status.getConversationProfilePicture() != null) {
holder.status_account_profile.setVisibility(View.GONE);

View File

@ -5,7 +5,7 @@
android:id="@+id/quick_reply_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/quick_reply_background"
android:background="?attr/cardviewColor"
android:padding="10dp"
android:visibility="gone">