gpt4 book ai didi

java - 操作栏布局看起来不正确

转载 作者:行者123 更新时间:2023-11-30 01:58:52 26 4
gpt4 key购买 nike

我正在使用这个库:

https://github.com/jpardogo/PagerSlidingTabStrip

但是,我的 actionbar 看起来像这样:

enter image description here

我需要它看起来像这样(注意操作栏没有我的那么大):

https://raw.githubusercontent.com/jpardogo/PagerSlidingTabStrip/master/art/material_tabs_middle.gif

这是我的 activity_main.xml 布局:

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/primary"
android:minHeight="56dp"
app:theme="@style/ThemeOverlay.AppCompat.Dark"/>

<com.astuetz.PagerSlidingTabStrip
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_below="@+id/toolbar"
android:background="@color/primary"
android:textColorPrimary="@color/white"
app:pstsDividerColor="@color/primary"
app:pstsIndicatorColor="@color/white"
app:pstsIndicatorHeight="2dp"
app:pstsShouldExpand="true"
app:pstsUnderlineHeight="0dp"/>

<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/tabs"/>

</RelativeLayout>

我的 menu_main.xml 布局:

<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" tools:context=".MainActivity">
<item android:id="@+id/action_settings" android:title="@string/action_settings"
android:orderInCategory="100" app:showAsAction="never" />
</menu>

我该如何解决这个问题?

最佳答案

您的 Activity 中目前有两个工具栏布局。您需要使用 setSuppotActionBar(Toolbar) 设置工具栏.

例子:

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
}

关于java - 操作栏布局看起来不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31796960/

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