我已经检查过如何启动我的片段的解决方案的数量,但到目前为止还没有任何工作。我感谢我能得到的任何帮助
我想要的是让片段内的内容显示出来。
我有2个标签可以正常工作,但每个标签内的片段都没有显示内容,因为片段永远不会被打开。这是奇怪的因为片段extende actionBarActivity。但是,如果我使mainActivity extende fragmentActivity有效,但我的标签不会。
Tab.setCurrentItem(tab.getPosition()); 似乎没有做到这一点
androidManifest中的主题 android:theme =“@ style / Theme.AppCompat.Light.DarkActionBar”
MainActivity
import android.os.Bundle;
import android.support.v4.view.ViewPager;
import android.support.v7.app.ActionBar;
import android.support.v7.app.ActionBarActivity;
import is.at.work.lottostokkur.R;
import is.at.work.lottostokkur.adapter.TabPagerAdapter;
public class MainActivity extends ActionBarActivity {
ViewPager Tab;
TabPagerAdapter TabAdapter;
ActionBar actionBar;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TabAdapter = new TabPagerAdapter(getSupportFragmentManager());
actionBar = getSupportActionBar();
Tab = (ViewPager)findViewById(R.id.pager);
Tab.addOnPageChangeListener(
new ViewPager.SimpleOnPageChangeListener() {
@Override
public void onPageSelected(int position) {
actionBar = getSupportActionBar();
actionBar.setSelectedNavigationItem(position);
}
});
//Enable Tabs on Action Bar
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
ActionBar.TabListener tabListener = new ActionBar.TabListener() {
@Override
public void onTabSelected(ActionBar.Tab tab, android.support.v4.app.FragmentTransaction fragmentTransaction) {
Tab.setCurrentItem(tab.getPosition());
}
@Override
public void onTabUnselected(ActionBar.Tab tab, android.support.v4.app.FragmentTransaction fragmentTransaction) {
}
@Override
public void onTabReselected(ActionBar.Tab tab, android.support.v4.app.FragmentTransaction fragmentTransaction) {
}
};
//Add New Tab
actionBar.addTab(actionBar.newTab().setText("Lottó").setTabListener(tabListener));
actionBar.addTab(actionBar.newTab().setText("About").setTabListener(tabListener));
}
}
我的activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:id="@+id/lottoId"
android:orientation="vertical" >
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="50sp"/>
</LinearLayout>
这是我试图启动的片段
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import is.at.work.lottostokkur.R;
public class LottoFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.
inflate(R.layout.lotto, container, false);
((TextView)view.findViewById(R.id.textView)).setText("iOS");
return view;
}
}
我的适配器
public class TabPagerAdapter extends FragmentStatePagerAdapter {
public TabPagerAdapter(FragmentManager fm) {
super(fm);
// TODO Auto-generated constructor stub
}
@Override
public Fragment getItem(int i) {
switch (i) {
case 0:
//Fragement for Lotto Tab
return new LottoFragment();
case 1:
//Fragment for About Tab
return new AboutFragment();
}
return null;
}
@Override
public int getCount() {
// TODO Auto-generated method stub
return 2; //No of Tabs
}
}
答案 0 :(得分:1)
TLDR;
我看不到您将适配器设置为
的行ViewPager
在您的情况下,您应该添加以下内容:
Tab.setAdapter(TabAdapter);
首先,我建议使用AppCompatActivity
,因为其他费用已经过折旧。
我还建议你不要使用actionbar.setNavigationMode()
方法,因为它也是折旧的。
您有很多其他选项可以实现标签导航。