ListView项目未显示在android选项卡式片段活动中

时间:2016-11-05 05:45:11

标签: listview android-studio android-fragments android-fragmentactivity

我无法弄清楚我的列表中的项目在从Tabbed活动调用的片段上查看的代码有什么错误,但是我的字符串数组中没有显示任何项目。

我已经设置了文本视图和列表视图的背景,以查看它是否实际显示过,而且确实显示了它。我可以看到顶部的textview和下面列表视图的黄色背景。

fragment_display_questions.xml

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="layout.DisplayQuestionsFragment">

<!-- TODO: Update blank fragment layout -->

<RelativeLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <TextView
        android:text="TextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/textView2"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="18dp"
        android:background="#ffff00"/>

    <ListView
        android:layout_width="fill_parent"
        android:layout_height="333dp"
        android:id="@+id/listview"
        android:layout_below="@+id/textView2"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:background="#ffff00"
        android:layout_marginTop="156dp" />

</RelativeLayout>

以下是 DisplayQuestionsFragment.java

的onCreate方法中的java代码
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    View view =  inflater.inflate(R.layout.fragment_display_questions, container, false);

    String[] questions={"Question 1","Question 2"};


    ListView lv = (ListView) view.findViewById(R.id.listview);

    ArrayAdapter<String> listviewadapter = new ArrayAdapter<String>(
            getActivity(),
            android.R.layout.simple_list_item_1,
            questions
    );

    lv.setAdapter(listviewadapter);

    return view;
}

没有错误返回它只是列表视图中的项目不存在。请帮助并提供一些意见。

非常感谢!

1 个答案:

答案 0 :(得分:0)

试试这个,

android:layout_height="wrap_content"
android:layout_marginTop="10dp"

注意:有一点需要注意,使用String arraylist而不是使用String Array,它可以一劳永逸地解决问题。