我一直在努力解决我现在面临的问题几个小时; 我的ViewPagerIndicator工作正常,我可以在标签之间正确切换,甚至只要不是ViewList就能正确看到Fragments中的内容...... ViewPager似乎无法以任何方式显示任何ListView!
注意: - 当鼠标悬停在android.support.v4.view.ViewPager上时,我得到一个“这个元素既没有附加源也没有附加Javadoc,因此找不到Javadoc”;我不知道这是否与我的问题有关,因为我在搜索修复时没有提及。
- setAdapter(..)(设置我的ListView的内容)也不起作用;我想这也与问题有关。
如果有人可以帮助我,请告诉我。
提前致谢。
(如果有人愿意帮助,我会发布我的代码:))
修改
非常感谢Yatin的快速回复:)我有4个标签,我可以在之间切换..为了测试我制作了一个包含按钮和列表视图的标签..按钮显示正常,但列表视图不会显示。 ..
bottom.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/mainbottom"
android:orientation="horizontal" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<ListView
android:id="@+id/secondlist"
android:layout_width="192dp"
android:layout_height="721dp"
android:layout_weight="0.45"
tools:listitem="@android:layout/simple_list_item_2" >
</ListView>
</LinearLayout>
main.xml中
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="650dp">
<com.viewpagerindicator.TitlePageIndicator
android:id="@+id/indicator"
android:padding="10dip"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:background="#000000"
android:textColor="#2FB3E3"
app:footerColor="#2FB3E3"
app:footerLineHeight="1dp"
app:footerIndicatorHeight="3dp"
app:footerIndicatorStyle="underline"
app:selectedColor="#FFFFFF"
app:selectedBold="true"
/>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
/>
</LinearLayout>
FragmentAdapter.java
public FragmentAdapter(FragmentManager fm) {
super(fm);
}
@Override
public int getIconResId(int index) {
return 0;
}
@Override
public android.support.v4.app.Fragment getItem(int position)
{
android.support.v4.app.Fragment fragment = new FirstActivity();
switch(position){
case 0:
fragment = new FirstActivity();
break;
case 1:
fragment = new SecondActivity();
break;
case 2:
fragment = new ThirdActivity();
break;
case 3:
fragment = new FourthActivity();
break;
}
return fragment;
}
@Override
public int getCount() {
// TODO Auto-generated method stub
return 4;
}
@Override
public CharSequence getPageTitle(int position){
String title = "";
switch(position){
case 0:
title = "First";
break;
case 1:
title = "Second";
break;
case 2:
title = "Third";
break;
case 3:
title = "Fourth";
break;
}
return title;
}
}
答案 0 :(得分:0)
好的,我已经解决了我的问题...
我在主要活动中使用自定义适配器作为listview;我已经为片段修改了这个适配器,并在FirstActivity()中使用它,而不是在MainActivity()中使用它。