我想使用工具栏。
我有以下用于自定义工具栏的布局文件。
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/music_actionbar_display_home"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginRight="2dp"
android:orientation="horizontal"
android:weightSum="2" >
<ImageView
android:id="@+id/music_actionbar_backbutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginRight="2dp"
android:layout_weight="1"
android:src="@drawable/home_back" />
<ImageView
android:id="@+id/music_actionbar_logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:src="@drawable/home_square_logo" />
</LinearLayout>
<Spinner
android:id="@+id/music_actionbar_language"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginLeft="5dp"
android:layout_toRightOf="@+id/music_actionbar_display_home"
android:drawSelectorOnTop="true"
android:spinnerMode="dialog" />
但在图形布局中,我收到以下错误消息。
渲染期间引发异常:com.android.layoutlib.bridge.MockView无法强制转换为android.view.ViewGroup Window&gt;中记录了异常详细信息。显示视图&gt;错误日志 无法实例化以下类: - android.support.v7.widget.Toolbar(Open Class,Show Error Log) 有关更多详细信息,请参阅错误日志(窗口&gt;显示视图)。
在Appcompat库中,我没有类android.support.v7.widget.Toolbar。 在我的SDK Manager中,我已经安装了 Android支持库和 Android支持存储库。
见下图。
我应该怎么做才能拥有Toolbar类?。
如果需要除上述之外的更多细节,我会。