ExpendListView箭头移动到右边的解决方案

来源:互联网 发布:明底线知规矩守纪律 编辑:程序博客网 时间:2024/09/21 08:17

找到了一种最简答的解决方案。如下

This is what you need to do:

1) set layout direction to right-to-left

<ExpandableListView...android:layoutDirection="rtl" />

2) make sure your list item layout includes this (yes, you'll need custom layout):

android:gravity="left" //to adjust the text to align to the left againandroid:layoutDirection="ltr"  //OR this line, based on your layout

And you are good to go!

0 0
原创粉丝点击