0

简介 我希望根据用户从导航抽屉中的选择来拥有不同的片段。对于导航抽屉中的每个项目,都是应该调用的不同站点。我想通过片段来实现这一点。通过在 onCreate 方法中执行以下操作,将首先显示主要片段

if ( savedInstanceState == null ) {
    FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
    Fragment fragment = MainFragment.passList(hashMap);
    ft.replace(R.id.content_frame, new MainFragment());
    ft.commit();
}

如您所见,我正在将数据(哈希图)传递给片段的一个完美工作的方法。然后将数据放入字符串数组中。这是可行的,数据也可以在片段的 onCreate 方法中使用。

这是主要活动的xml

    <android.support.v4.widget.DrawerLayout 

    xmlns:android="http://schemas.android.com/apk/res/android"
       android:id="@+id/drawer_layout"
       android:layout_width="match_parent"
       android:layout_height="match_parent" >

 <FrameLayout
            android:id="@+id/content_frame"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />

    <ListView
       android:id="@+id/left_drawer"
       android:layout_width="240dp"
       android:layout_height="match_parent"
       android:layout_gravity="start"
       android:choiceMode="singleChoice"
       android:divider="@android:color/darker_gray"
       android:dividerHeight="0.1dp" />

</android.support.v4.widget.DrawerLayout>

这是主要片段的 XML

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mainRelativeLayout"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:background="?android:attr/activatedBackgroundIndicator"
   android:gravity="center_vertical"
   android:paddingRight="10dp"
   >
<ScrollView
        android:id="@+id/mainScrollView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1.03" >

        <LinearLayout
            android:id="@+id/mainListView"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical" >
        </LinearLayout>
    </ScrollView>
    </RelativeLayout>

我现在想要实现的是在滚动视图中显示数据。但我的问题是,我如何填充它以及如何初始化它?

通常我会去像那样创建它们 - 因为 findViewById 在片段中不起作用(必须自己编写方法)

ScrollView sv = new ScrollView(getActivity());
LinearLayout ll = new LinearLayout ( getActivity() );

sv.addView(ll); 
ll.addView(SAMPLETEXTVIEW);

View mainView = inflater
            .inflate(R.layout.main_fragment, container, false);
    return mainView;

但这只会给我留下一个空白屏幕,并且没有添加任何实际文本。我怎样才能做到这一点?数据就在那里——我知道,因为它是用 System.out.println 打印出来的——我只需要一种显示它的方法。提前谢谢!

编辑

当我这样做时

View rootView = inflater.inflate(R.layout.main_fragment, container, false);

    ScrollView sv = (ScrollView) rootView.findViewById(R.id.mainScrollView);
    LinearLayout ll = (LinearLayout) rootView.findViewById(R.id.mainListView);

    sv.addView(ll); 

我只得到一个 IllegalStateException ScrollView 只能托管一个直接的孩子......但我不明白。线性布局是唯一的直接孩子。为什么会出现问题?

这是完整的onCreateView方法

public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {

    View rootView = inflater.inflate(R.layout.main_fragment, container, false);

    ScrollView sv = (ScrollView) rootView.findViewById(R.id.mainScrollView);
    LinearLayout ll = (LinearLayout) rootView.findViewById(R.id.mainListView);

    sv.addView(ll); 
    source      = new TextView[hashMapSize];


    for (int i = 0; i < hashMapSize; i++) {

        source[i]       = new TextView(getActivity());
source      [i].setText( "Source: "     + sourceArr     [i] );
ll.addView(source[i]

    }
    return rootView;
}
4

1 回答 1

1

你得到的原因IllegalStateException是因为你膨胀了你的 R.layout.main_fragment 已经包含你的 ScrollView 已经有一个直接的孩子(在你的布局 xml 中声明)。

您不应该添加sv.addView(ll)已经存在的代码。您需要做的就是像使用findViewById.

删除sv.addView(ll);,你应该没问题。

于 2013-10-10T13:24:35.180 回答