我不明白这一点:我有一个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更改为片段不会改变任何内容。 请帮我。 提前谢谢。