我的代码应该在我的UrlListFragment中填充我的ListView,但是当我运行它时,我看到没有效果。 我把问题搁置在我的WebView上,并发现一旦我加载了一个URL就会使用整个屏幕。 我不确定这是否意味着我的ListView没有被填充,因此它不会占用空间,因此WebView会占用整个屏幕,或者如果WebView占用整个屏幕无论是否正在填充ListView。
我像这样填充我的ListView:
View returnView = inflator.inflate(R.layout.url_fragment, container, false);
ListView listView1 = (ListView) returnView.findViewById(R.id.mylist);
String[] items = { "http://mobile.cs.fsu.edu/android", "http://www.google.com", "http://my-favoriate-website.com" };
ArrayAdapter<String> adapter = new ArrayAdapter<String>(getActivity(), android.R.layout.simple_list_item_1, items);
listView1.setAdapter(adapter);
return returnView;
我的主要XML是:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</FrameLayout>
我按照这样的方式将片段放在主布局中:
FragmentManager manager = getFragmentManager();
FragmentTransaction trans = manager.beginTransaction();
UrlListFragment urlfragment = new UrlListFragment();
MyWebFragment webfragment = new MyWebFragment();
trans.add(R.id.fragment_container, urlfragment, "my_url_fragment");
trans.add(R.id.fragment_container, webfragment, "my_web_fragment");
trans.commit();
问题是什么,我的ListView不会出现,而我的WebView占用了整个屏幕?
答案 0 :(得分:0)
你应该使用这种类型的构造函数
ArrayAdapter(Context context, int resource, int textViewResourceId, T[] objects)
其中一切都和你写的一样,但是在textViewResourceId你使用android.R.id.text1