在列表活动中设置工具栏

时间:2015-07-20 03:50:41

标签: android listactivity android-toolbar

我有一个ListActivity我想使用工具栏,但我得到的错误无法解决getSupportToolbar。在我的主要活动中一切正常但在这里我得到错误。

3 个答案:

答案 0 :(得分:2)

在Android开发博客文章中发现了这段摘录。您必须将工具栏用作独立对象并添加自己的项目。

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.blah);

    Toolbar toolbar = (Toolbar) findViewById(R.id.my_awesome_toolbar);

    // Set an OnMenuItemClickListener to handle menu item clicks
    toolbar.setOnMenuItemClickListener(new Toolbar.OnMenuItemClickListener() {
        @Override
        public boolean onMenuItemClick(MenuItem item) {
            // Handle the menu item
            return true;
        }
    });

    // Inflate a menu to be displayed in the toolbar
    toolbar.inflateMenu(R.menu.your_toolbar_menu);
}

答案 1 :(得分:0)

据我所知,您尚未在活动中设置工具栏。首先,您必须将应用主题设置为@style/Theme.AppCompat.Light.NoActionBar, 然后,您必须在MainActivity中设置自定义工具栏       Toolbar toolbar = (Toolbar) findViewById(R.id.tool_bar_main_activity); setSupportActionBar(toolbar); TextView toolbar_title = (TextView) toolbar.findViewById(R.id.title_toolbar); getSupportActionBar().setDisplayOptions(0, ActionBar.DISPLAY_SHOW_TITLE);

我希望这可以解决你的问题。

答案 2 :(得分:0)

This is how I had set up a toolbar in my List Activity. I will post the layout file details

activity1.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <include
        android:id="@+id/toolbar"
        layout="@layout/toolbar_activity"  />

    <ListView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@android:id/list" />

</LinearLayout>


toolbar_activity.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:id="@+id/toolbar_parent"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

<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="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentStart="true"
    android:minHeight="?attr/actionBarSize"
    android:background="@color/windowBackground"
    local:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    local:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>

<Button
android:id="@+id/buttonReturn"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_alignParentLeft="true"
android:background="@drawable/arrow_left" />

</RelativeLayout>