1

我正在尝试制作一个android布局,其中我在屏幕左侧有一个包含菜单条目的ListFragment,然后是ListFragment右侧的一个区域,我可以根据左侧选择的条目以编程方式加载不同的片段。因此,我首先制作了一个 xml 布局文件,该文件具有水平线性布局,其中包含两个框架布局。我的想法是我可以将我的片段加载到框架布局中。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="0dp"
    android:layout_height="match_parent">

    <FrameLayout 
        android:id="@+id/fragment_container_left"
        android:layout_width="match_parent"
        android:layout_height="match_parent" 
        android:layout_weight="30"/>


    <FrameLayout 
        android:id="@+id/fragment_container_right"
        android:layout_width="match_parent"
        android:layout_height="match_parent" 
        android:layout_weight="70"/>

</LinearLayout>

然后在 onCreate 方法的 MainViewActivity 类中,我将一个列表片段添加到左侧容器,并将一个列表片段添加到右侧容器。

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.menu_items);

    if(findViewById(R.id.fragment_container_left) != null) {
        if(savedInstanceState == null){
            MenuListFragment menuListFragment = new MenuListFragment();
            FragmentManager fm = getFragmentManager();
            FragmentTransaction ft = fm.beginTransaction();
            ft.add(R.id.fragment_container_left, menuListFragment);
            ft.commit();
        }
    } 

    if(findViewById(R.id.fragment_container_right) != null) {
        if(savedInstanceState == null){
            MoveListFragment moveListFragment = new MoveListFragment();
            FragmentManager fm = getFragmentManager();
            FragmentTransaction ft = fm.beginTransaction();
            ft.add(R.id.fragment_container_right, moveListFragment);
            ft.commit();
        }
    }
}

那么 MenuListFragment 的 onCreate 方法是:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setListAdapter(ArrayAdapter.createFromResource(getActivity().getApplicationContext(),
            R.array.menu_items, R.layout.main_menu_item));
}

然后 MoveListFragment 的 onCreate 方法是:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    String[] items = { "move 1", "move 2", "move 3", "move 4" };
    setListAdapter(new ArrayAdapter<String>(getActivity(), R.layout.move_list_items, items));
}

这是 main_menu_item xml:

<?xml version="1.0" encoding="utf-8"?>
<TextView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:textSize="24sp"
    android:padding="6dp" 
    android:id="@+id/main_menu_item"/>

和 move_list_items xml:

<?xml version="1.0" encoding="utf-8"?>
<TextView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:textSize="24sp"
    android:padding="6dp" 
    android:id="@+id/move_list_item"/>

当我运行此代码时,我没有收到任何类型的错误,但屏幕上只显示白色背景。我不明白我做错了什么。

4

1 回答 1

4

调用findViewById(R.id.fragment_container_left)将为您提供 FrameLayout,而不是片段,它显然永远不会为空。您应该使用以下命令检查相应的片段是否已经存在findFragmentById

if(getFragmentManager().findFragmentById(R.id.fragment_container_left) == null) {
        MenuListFragment menuListFragment = new MenuListFragment();
        FragmentManager fm = getFragmentManager();
        FragmentTransaction ft = fm.beginTransaction();
        ft.add(R.id.fragment_container_left, menuListFragment);
        ft.commit();
}

作为另一个提示,您可以使用列表片段将内容片段与列表片段链接setTargetFragment。如果重新创建片段,这将自动重新连接片段。

于 2013-02-07T17:36:33.173 回答