我开始开发新的应用程序,并且我正在试图给它一个材料设计外观。为此,我使用了v7支持兼容性。
在应用程序的某些活动中,我需要工具栏不显示应用程序标题,我不知道如何,但它默认显示。在这些活动中,我在工具栏的右侧有一个文本视图,就像一个按钮,我已经实现了traex的RippleEffect。
所以,基本上我的问题是,如何从工具栏中隐藏应用程序的标题?因为即使我这样做:
toolbar.setTitle("");
或
toolbar.setTitle(null);
它继续出现。
这是我的代码:
自定义工具栏xml [toolbar_intro.xml]:
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
xmlns:ripple="http://schemas.android.com/apk/res-auto"
xmlns:app="http://schemas.android.com/tools"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
local:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
local:popupTheme="@style/ThemeOverlay.AppCompat.Light">
<com.andexert.library.RippleView
android:id="@+id/more"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="right"
android:layout_marginRight="40dp"
ripple:rv_centered="false"
app:rv_rippleDuration="1">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/toolbar_text"
android:textColor="@color/White"
android:textStyle="bold"
android:textSize="25sp"
android:text="Next"/>
</com.andexert.library.RippleView>
</android.support.v7.widget.Toolbar>
这就是我在布局中包含工具栏的方式:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include
android:id="@+id/toolbar"
layout="@layout/toolbar_intro" />
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ImageView
...
</RelativeLayout>
</LinearLayout>
这就是活动:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.intro_wellcome);
toolbar= (Toolbar) findViewById(R.id.toolbar);
if (toolbar != null) {
setSupportActionBar(toolbar);
toolbar.setTitle("");
}
TextView toolbar_text = (TextView) toolbar.findViewById(R.id.toolbar_text);
toolbar_text.setText(R.string.next);
...
}
此外,这是我实施的风格:
<style name="MaterialTheme.Base" parent="Theme.AppCompat.Light.NoActionBar">
答案 0 :(得分:35)
使用
window.myScroll = new IScroll ('#iscroll-wrapper',
probeType: 3,
mouseWheel: true,
scrollbars: true,
bounce: true,
keyBindings: true,
invertWheelDirection: false,
momentum: true,
fadeScrollbars: false,
interactiveScrollbars: true,
resizeScrollbars: true,
shrinkScrollbars: false,
click: false,
preventDefaultException: { tagName:/.*/ }
}
答案 1 :(得分:2)
使用
getSupportActionBar().setDisplayShowTitleEnabled(false);
在setContentView()
和setSupportActionBar()
功能下。
答案 2 :(得分:0)
getSupportActionBar.setTitle("");