所以我试图用XML设计一个应用程序的工具栏但面临困难。所以我到目前为止的代码是
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#cacaca"
/>
如何插入工具栏以便我可以使用它来添加功能?应该使用XML吗?还是有另一种方法可以做到这一点?
答案 0 :(得分:1)
你必须通过xml方式来做.. 首先,你必须在像这样的单独的xml文件中创建
<强> Toolbar.xml 强>
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="60dp"
android:background="@color/primary"
/>
然后你必须像你这样在你的布局中使用它
<include
android:id="@+id/toolbar"
layout="@layout/toolbar" />
之后你必须在活动中定义它
import android.support.v7.widget.Toolbar;
private Toolbar nToolbar;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_create_add_subject);
this.setToolBar();
}
private void setToolBar() {
nToolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(nToolbar);
getSupportActionBar().setDisplayShowHomeEnabled(true);
getSupportActionBar().setDefaultDisplayHomeAsUpEnabled(true);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
setTitle("Title");
}
答案 1 :(得分:0)
添加&#34; saurabh gupta&#34;的答案 如果你想在工具栏的帮助下用这种方式定义一个自定义布局:
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="60dp"
android:background="@color/primary">
<!-- Your own implementation of layout -->
// ..
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#cacaca"
/>
.. //
</android.support.v7.widget.Toolbar>