gpt4 book ai didi

java - 从 viewpager 适配器设置页面标题后,页面标题不会出现在 ViewPager 中

转载 作者:行者123 更新时间:2023-12-02 03:30:12 29 4
gpt4 key购买 nike

我从适配器设置标题后,标题未出现在 PagerTabStrip 中

这是我的 Activity

public class MainActivity extends AppCompatActivity {
private ViewPager pager ;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
pager = (ViewPager) findViewById(R.id.pager);
pager.setAdapter(new PagerAdapter(getSupportFragmentManager(),this));
}

}

这是我的布局

 <?xml version="1.0" encoding="utf-8"?>
<android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v4.view.PagerTabStrip
android:id="@+id/titlepage"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="top"

/>

</android.support.v4.view.ViewPager>

这是适配器

public class PagerAdapter extends FragmentPagerAdapter {

public PagerAdapter(FragmentManager fm , Context ctxt) {
super(fm);

}
@Override
public Fragment getItem(int position) {
return MyFragment.newInstance(position);
}
@Override
public int getCount() {
return 10;
}

@Override
public String getPageTitle(int position) {

return "title" + position ;
}

这是应用程序中使用的主题:-

  <!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>

结果:-

enter image description here

正如你在上图中看到的,即使我在 getPageTitle 方法中设置了标题,viewpager 中也没有出现标题,有人可以告诉我是什么错误阻止我在 viewpager 中添加标题吗?

最佳答案

在布局中使用它

<android.support.design.widget.AppBarLayout
android:id="@+id/Parent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="60dp">

<android.support.v7.widget.Toolbar
android:id="@+id/my_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar" />


<android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent" />

</android.support.design.widget.AppBarLayout>

这是我的代码,您可以根据自己的方便进行自定义。

关于java - 从 viewpager 适配器设置页面标题后,页面标题不会出现在 ViewPager 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38203656/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com