我设置了一个Activity和一个Fragment,在布局中我有一个ListView,我给了一个任意名称并通过findViewById()访问。一切正常,直到我注意到滚动对ListView不起作用。
这里有很多关于ListView和没有滚动的线程。我花了很多时间来承认尝试一种又一种可能的解决方案。在我偶然发现解决方案之前没有任何效果,我将在回答这个问题时对此进行描述。
编辑:
我删除了我在自己的问题中发布的答案,我声称你必须使用ListFragment(或SherlockListFragment)来滚动ListView才能正常工作。
感谢Zackehh9lives,我已经确定我的说法错了。
他的回答中的关键词是他展示的代码树桩在onCreateView()方法中。经过一些实验,我认为情况如下:
如果使用ListFragment(或SherlockListFragment),则必须在onActivityCreated()方法中设置ListView小部件,并且ListView滚动有效。
如果使用Fragment(或SherlockFragment),可以在onActivityCreated()或onCreateView()中设置ListView,但如果在onActivityCreated()中设置,则滚动不起作用。
这是我的问题 - 我在onActivityCreated()中使用SherlockFragment并设置ListView。
答案 0 :(得分:1)
我在ListView
中有一个SherlockFragment
,它滚动得很好。不确定是什么问题?也许你在某个地方有一些不正确的东西(可能想发布你的代码?)。下面是我的ListView和XML:
<强> MyFragment.java:强>
// Find the ListView we're using
list = (ListView)view.findViewById(R.id.listView);
// Set the vertical edges to fade when scrolling
list.setVerticalFadingEdgeEnabled(true);
// Create a new adapter
adapter = new ArrayAdapter<String>(getActivity(), R.layout.list_item, R.id.title, questions);
// Set the adapter to the list
list.setAdapter(adapter);
// Set on item click listener to the ListView
list.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {
// Do stuff
}
});
所有代码都是我在Fragment中与ListView相关的所有代码,它位于我的onCreateView()
中。下面是它的XML。
<强> ListItem.xml:强>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_toLeftOf="@+id/arrow"
android:orientation="vertical" >
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxLines="1"
android:text="@string/title"
android:textSize="16sp"
android:textStyle="bold" />
<TextView
android:id="@+id/date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/title"
android:layout_alignParentBottom="true"
android:layout_below="@+id/title"
android:layout_marginTop="5dp"
android:padding="2dp"
android:text="@string/date"
android:textColor="#7F7F7F"
android:textSize="12sp" />
</RelativeLayout>
<ImageView
android:id="@+id/arrow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="5dp"
android:contentDescription="@string/app_name"
android:src="@drawable/arrow_next" />
<强> ListView.xml:强>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:baselineAligned="false"
android:paddingTop="-2dp" >
<ListView
android:id="@+id/listView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" >
</ListView>
</LinearLayout>
如果您发布代码,我们有更好的机会帮助您:)