我在片段中有一个列表视图,我想感知单击列表视图,以便我可以更改布局但我的代码不起作用。我的 xml 布局是:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</ListView>
</FrameLayout>
我的代码是:
ListView lists=(ListView)rootView.findViewById(android.R.id.list);
lists.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
public void onItemSelected(AdapterView parentView, View childView,
int position, long id)
{
// setDetail(position);
Toast.makeText(getActivity().getApplicationContext(), "Yea!!! click ho gae called", Toast.LENGTH_SHORT).show();
}
public void onNothingSelected(AdapterView parentView) {
}
});
但是这段代码什么也没做,请帮我整理一下,谢谢..