[android] fix for search categories list icon position for RTL locales.

Signed-off-by: Dzmitry Yarmolenka <dzmitry.yarmolenka.1986@gmail.com>
This commit is contained in:
Dzmitry Yarmolenka 2021-07-26 16:55:23 +02:00 committed by Roman Tsisyk
parent 53501ff2e6
commit 72544eaa24

View file

@ -192,7 +192,8 @@ class CategoriesAdapter extends RecyclerView.Adapter<CategoriesAdapter.ViewHolde
void setTextAndIcon(@StringRes int textResId, @DrawableRes int iconResId)
{
mTitle.setText(textResId);
mTitle.setCompoundDrawablesWithIntrinsicBounds(iconResId, 0, 0, 0);
mTitle.setCompoundDrawablesRelativeWithIntrinsicBounds(iconResId, 0, 0, 0);
//mTitle.setCompoundDrawablesWithIntrinsicBounds(iconResId, 0, 0, 0);
}
@NonNull