当前,我正在开发应用程序,但我是初学者。我添加了一些活动布局,但是每次启动应用程序时,都会出现一个默认工具栏。如何在不“销毁”已实现的布局的情况下自定义此工具栏?
toolbar.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/my_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimaryDark"
android:elevation="4dp"
app:popupTheme="@style/AppTheme.PopupOverlay">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_logo"
android:padding="20dp"
android:foregroundGravity="center"/>
</android.support.v7.widget.Toolbar>
MainActivity.java(扩展了RxAppCompatActivity)
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ButterKnife.bind(this);
Toolbar toolbar = findViewById(R.id.my_toolbar);
setSupportActionBar(toolbar);
}
工具栏变量始终为空-为什么?
答案 0 :(得分:0)
在您的活动XML文件中添加XML代码。由于该标记未包含在您的activity_main.xml中,因此当您尝试通过id查找它时,总是会得到NullPointerException。
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.screens.MainActivity">
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/my_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimaryDark"
android:elevation="4dp"
app:popupTheme="@style/AppTheme.PopupOverlay">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_logo"
android:padding="20dp"
android:foregroundGravity="center"/>
</android.support.v7.widget.Toolbar>
<!--Rest of your XML-->
</androidx.constraintlayout.widget.ConstraintLayout>
注意:例如,我仅使用ConstraintLayout,您可以使用任何喜欢的布局(尽管ConstraintLayout非常棒!)
顺便说一句,由于您正在使用ButterKnife,因此可以轻松地使用@BindView(R.id.my_toolbar)绑定视图,而不是使用findViewById()。