我想使用工具栏。
我有以下用于自定义工具栏的布局文件。
<?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 > Show View > Error Log 中无法实例化以下类:- android.support.v7。 widget.Toolbar(打开类,显示错误日志)有关详细信息,请参阅错误日志(窗口 > 显示视图)。
在 Appcompat 库中,我没有 android.support.v7.widget.Toolbar 类。在我的 SDK 管理器中,我安装了最新的Android 支持库和Android 支持库。
见下图。
我应该怎么做才能拥有 Toolbar 类?
如果需要上述以外的更多细节,我会的。