Android - ListView不会在DialogFragment内滚动

时间:2013-07-06 11:46:25

标签: android listview android-dialogfragment

我正在开始为Android开发。我想创建我的模态警报(如iOS中的UIAlertView)。我考虑使用工作正常的Activity。我花了一些时间来做这件事。但后来,我使用DialogFragment找到了更好的解决方案。我将活动更改为对话框片段,并修改了与片段相关的所有必需部分。它工作正常。除了片段中的ListView不再滚动!问题可能是什么?

注意:它已经在Activity解决方案中工作了。没有滚动视图。

这是XML:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="@dimen/modal_list_outter_frame_margin_vertical"
    android:layout_marginLeft="@dimen/modal_list_outter_frame_margin_horizontal"
    android:layout_marginRight="@dimen/modal_list_outter_frame_margin_horizontal"
    android:layout_marginTop="@dimen/modal_list_outter_frame_margin_vertical"
    android:background="@drawable/modal_list_outter_frame"
    android:gravity="center"
    android:orientation="vertical"
    android:paddingBottom="@dimen/modal_list_padding_bottom" >

    <TextView
        android:id="@+id/title_text_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="@dimen/modal_list_title_horizontal_margin"
        android:layout_marginRight="@dimen/modal_list_title_horizontal_margin"
        android:layout_marginTop="@dimen/modal_list_title_top_margin"
        android:gravity="center"
        android:maxLines="@integer/modal_list_title_number_of_lines"
        android:shadowColor="@color/modal_list_text_shadow_color"
        android:shadowDx="0"
        android:shadowDy="@integer/modal_list_title_shadow_offset_y"
        android:shadowRadius="@integer/modal_list_title_shadow_radius"
        android:text="@string/modal_list_title_small"
        android:textColor="@color/modal_list_text_color"
        android:textSize="@dimen/modal_list_title_font_size"
        android:textStyle="bold" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="@dimen/modal_list_inner_frame_margin_bottom"
        android:layout_marginLeft="@dimen/modal_list_inner_frame_margin_horizontal"
        android:layout_marginRight="@dimen/modal_list_inner_frame_margin_horizontal"
        android:layout_marginTop="@dimen/modal_list_inner_frame_margin_top"
        android:background="@drawable/modal_list_inner_frame"
        android:gravity="center"
        android:orientation="vertical"
        android:paddingBottom="@dimen/modal_list_padding_bottom" >

        <ListView 
            android:id="@+id/list_view"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="@dimen/modal_list_list_view_margin_horizontal"
            android:layout_marginRight="@dimen/modal_list_list_view_margin_horizontal"
            android:layout_marginTop="@dimen/modal_list_list_view_margin_top"
            android:divider="@null"
            android:dividerHeight="0dp" 
            android:listSelector="@color/modal_list_selector_color_selected"
            >

        </ListView>

    </LinearLayout>

</LinearLayout>

更新:我发现一些非常奇怪的东西!这就像片段是透明的!如果我点击片段中的任何内容,似乎我正在点击它下面的按钮!这是我用来显示片段的代码:

FragmentTransaction ft = getFragmentManager().beginTransaction();
ft.addToBackStack("SingleSelectionCustomRowModalList");
modalList = ASModalList.newInstance(modalListStateForCustomRow) ;
modalList.show(ft, "SingleSelectionCustomRowModalList");

更新2:似乎问题是DialogFragment不是模态的。我正在使用这种风格:

int style = DialogFragment.STYLE_NO_TITLE | DialogFragment.STYLE_NO_FRAME;
setStyle(style, R.style.ASModaListDialogStyle);

使用的主题是:

<style name="ASModaListDialogStyle" parent="@android:style/Theme.Dialog">
    <item name="android:windowBackground">@drawable/modal_list_background_view</item>
    <item name="android:windowIsFloating">true</item>
    <item name="android:windowContentOverlay">@null</item>
    <item name="android:windowTitleStyle">@null</item>
    <item name="android:colorBackgroundCacheHint">@null</item>
    <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
    <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
    <item name="android:gravity">center</item>
</style>

我正在使用此主题使对话框的背景变暗。

3 个答案:

答案 0 :(得分:0)

请提供一些代码,否则很难说出错了。例如Layout XML或DialogFragment Class。

答案 1 :(得分:0)

最终对话是非模态的。使用以下方法修正了它:

int style = DialogFragment.STYLE_NORMAL | DialogFragment.STYLE_NO_FRAME;
    setStyle(style, R.style.ASModaListDialogStyle);

答案 2 :(得分:0)

没有回答的老问题实际上对我有用。 希望它能帮助别人。

解决方案是将列表高度设置为0dp,并添加权重字段。并删除内部LinearLayout。这样,外部LinearLayout可以为列表设置正确的大小,并且它将滚动。

<android.support.v7.widget.ListViewCompat
    android:id="@+id/ev_list"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:layout_marginLeft="16dp"
    android:layout_marginRight="16dp"/>