释放双眼,带上耳机,听听看~!
关键属性:
android:layoutDirection=""
当安卓的layoutDirection = “rtl” 时,箭头在右边显示
布局:
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/backgroundColor"
android:orientation="vertical">
android:id="@+id/expand_list_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layoutDirection="rtl">
布局显示:
当机器人:的layoutDirection = “ltr” 时,箭头在左边边显示(默认)
布局文件:
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/backgroundColor"
android:orientation="vertical">
android:id="@+id/expand_list_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layoutDirection="ltr">
布局图片显示:
OK了〜