ListView的第一个条目对于RTL总是不正确

时间:2019-04-25 07:07:05

标签: android listview layout right-to-left

由于某种原因,当我使用RTL时,ListView中的第一个条目总是被错误地翻转。例如:

Elements in ListView Flipped wrong way around 附加信息:

  1. ListView在DialogFragment中。

  2. 我已经更新了清单以支持RTL(应用程序的其余部分工作正常)

  3. ListView有一个适配器,每个项目的布局如下:

        

        

    <ImageView
        android:id="@+id/dropdown_icon"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:adjustViewBounds="true"
        android:scaleType="fitCenter"
        android:src="@drawable/photo_button_disabled"
        android:layout_gravity="center_horizontal"/>
    
    <ImageView
        android:id="@+id/count_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:clickable="false"
        android:scaleType="fitCenter"
        android:layout_alignEnd="@+id/dropdown_icon"
        android:layout_alignRight="@+id/dropdown_icon"
        android:layout_alignStart="@+id/dropdown_icon"
        android:layout_alignLeft="@+id/dropdown_icon"
        android:layout_alignTop="@+id/dropdown_icon"
        android:layout_alignBottom="@+id/dropdown_icon"
        android:adjustViewBounds="true"/>
    

对话框片段的布局如下:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"
android:background="@drawable/rounded_bg">

<TextView
    android:id="@+id/title"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textColor="@android:color/white"
    android:textStyle="bold"
    android:textSize="@dimen/dialog_title"
    android:padding="10dp"/>

<LinearLayout
    android:layout_below="@+id/title"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <!-- This table should be populated with all the different options -->
        <ListView
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:id="@+id/entry_list"
            android:divider="?android:attr/dividerHorizontal"
            android:showDividers="middle"
            android:background="@color/overlay"
            android:descendantFocusability="afterDescendants"
            android:animateLayoutChanges="true">
        </ListView>


    <!-- The save and clear buttons-->
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:paddingLeft="@dimen/general_padding"
        android:paddingTop="@dimen/general_padding"
        android:paddingRight="@dimen/general_padding">

        <TextView
            android:id="@+id/warning_label"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:text="@string/recon_value_required"
            android:visibility="gone"
            android:textColor="@color/warningColour"
            android:layout_marginBottom="@dimen/list_vertical_margin"/>

        <LinearLayout
            android:id="@+id/button_container"
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:clipChildren="false"
            android:clipToPadding="false"
            android:layout_below="@id/warning_label"
            android:paddingBottom="@dimen/general_padding">
            <Button
                android:id="@+id/clear_button"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:background="@drawable/rounded_button"
                android:text="@string/clear"
                android:textColor="@color/buttonTextColour"
                android:layout_weight="1"
                android:foreground="?attr/selectableItemBackground"
                android:layout_marginRight="8dp"
                android:layout_marginEnd="8dp"/>

            <Button
                android:id="@+id/save_button"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:background="@drawable/rounded_button"
                android:text="@string/save"
                android:textColor="@color/buttonTextColour"
                android:layout_weight="1"
                android:foreground="?attr/selectableItemBackground"
                android:layout_marginLeft="8dp"
                android:layout_marginStart="8dp"/>
        </LinearLayout>

    </RelativeLayout>

</LinearLayout>
</RelativeLayout>

我不确定还有什么尝试。我摆弄了不同的布局。更改方向不能解决问题。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

在探索时,我发现问题仅在对话框中的ListViews上发生(我尝试过AlertDialog),并且上下滚动后,最高ListView行的方向性是固定的。我不确定为什么会发生这种情况,只能提出建议

  1. 通过在ListAdapter的rowView.setLayoutDirection(getContext().getResources().getConfiguration().getLayoutDirection());中添加getView来手动设置基于配置的方向(根据设备语言进行可靠更新)
  2. 不要重用/回收ListView的行/项目,尽管这可能会使您的应用程序变慢并且不建议使用
  3. 切换到RecyclerView

P.S。看到this question并遇到同样的问题

P.P.S。 getView似乎被大量调用,并且不定期地仅用于Dialogs中的ListViews,而不是Fragments / Activities中的ListViews,可能值得研究。尽管不能保证ListView的行为,但仍然有些奇怪