gpt4 book ai didi

android - AppBarLayout 显示意外行为?如何在 CollapsibleToolBarLayout 中禁用应用程序标题?

转载 作者:行者123 更新时间:2023-11-29 00:07:26 27 4
gpt4 key购买 nike

我无法理解为什么 App Name 会出现在后台?

我在其他项目中复制了相同的布局并且显示了相同的结果(只有应用程序名称更改为当前项目)

enter image description here

上面的布局如下图

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

<android.support.design.widget.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:minHeight="?attr/actionBarSize"
android:fitsSystemWindows="true"
app:layout_scrollFlags="scroll|enterAlwaysCollapsed">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
android:fitsSystemWindows="true"
app:layout_collapseMode="pin"
app:layout_scrollFlags="scroll|enterAlways" />

<android.support.v7.widget.CardView
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_marginRight="18dp"
android:layout_marginLeft="18dp"
android:layout_marginTop="?attr/actionBarSize"
app:cardBackgroundColor="?attr/colorPrimary"
app:cardCornerRadius="4dp"
app:cardElevation="3dp"
app:contentPadding="6dp"
app:layout_collapseMode="pin">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/etSearchPos"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="18dp"/>
<EditText
android:id="@+id/etSearchLoc"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="18dp"
android:layout_below="@id/etSearchPos"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/etSearchLoc"
android:text="Search"
android:background="@android:color/transparent"/>
</RelativeLayout>
</android.support.v7.widget.CardView>
</android.support.design.widget.CollapsingToolbarLayout>


<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</android.support.design.widget.AppBarLayout>

<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<!--
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|bottom"
android:layout_margin="@dimen/fab_margin"
android:src="@drawable/ic_done" />
--></android.support.design.widget.CoordinatorLayout>

最佳答案

改变:

<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />

 <android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>

// other views ...


</LinearLayout>

</android.support.v4.widget.NestedScrollView>

编辑:

如果您指的是 AppName,它是您工具栏的标题。您可以通过以下方式设置它。默认情况下,它将采用您的应用程序名称。

每当应用程序使用 CollapsingToolbarLayout 时,为了更改 ToolBar 的标题,我们需要设置 CollapsingToolbarLayout 的标题

编程方式:

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

CollapsingToolbarLayout collapsingToolbar =
(CollapsingToolbarLayout) findViewById(R.id.collapsing_toolbar);
collapsingToolbar.setTitle(""); //Set Empty if you do not want to show anything

替代方式:

 <android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:title="">

替代方法:

哦,可以用下面的方法解决

app:titleEnabled="false"

<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:titleEnabled="false">

关于android - AppBarLayout 显示意外行为?如何在 CollapsibleToolBarLayout 中禁用应用程序标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32842873/

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