我不明白这一点:我有一个 ListFragment 必须显示产品和类别的列表,当我输入一个类别时,列表上的 TextView 应该显示实际类别。我还需要返回按钮来返回根目录。OnKey 在布局中工作时我只有 ListView
<ListView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</ListView>
当我添加 TextView 以显示类别 OnKey 未被调用。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />
<ListView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</ListView>
</LinearLayout>
片段代码:
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.frag_cats, container, false);
//actual_category_name = (TextView) view.findViewById(R.id.actual_category_name);
view.setOnKeyListener(new OnKeyListener(){
@Override
public boolean onKey(View v, int keyCode, KeyEvent event) {
if ((keyCode == KeyEvent.KEYCODE_BACK) && event.getAction() == KeyEvent.ACTION_UP) {
goBack();
return true;
}
return false;
}
});
return view;
}
将 ListFragment 更改为 fragment 不会改变任何内容。请帮我。提前致谢。