'Change android chip icon position

I have added a few chips in my app. The default chip have tick icon when you select it like this. enter image description here

I want to change the icon position to the bottom. Like this. enter image description here

There is no property to change the icon position. How can I achieve this result.



Solution 1:[1]

use this property to change chip icon position:

android:layoutDirection="rtl"

Solution 2:[2]

You could set android:layoutDirection="rtl" or the opposite of your current direction to put the icon on the right.

For more: https://material.io/design/usability/bidirectionality.html

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Elikill58
Solution 2 Codemaker