为什么在我的项目中无法解析导入android.support.v7.widget.Toolbar

时间:2015-11-14 17:20:42

标签: android eclipse widget toolbar

我正在尝试创建一个需要工具栏的应用。我已经将“appcompat_v7.jar”添加到我的项目中,但我没有结果。

我已经查看了下面的一些链接,他们无能为力。

The Import android.support.v7 cannot be resolved

The import android.support.v7.app cannot be resolved

The Import android.support.v7 cannot be resolved

这是我的“AndroidManifect”:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.tabex"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="7"
        android:targetSdkVersion="21" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

来自Eclipse的图片:

enter image description here

enter image description here

正如您可以看到v7的其他导入工作但工具栏没有。我真的很适合你。

2 个答案:

答案 0 :(得分:2)

查看SDK Manager屏幕截图,您使用的是旧版本的支持库。直到v21,工具栏小部件才会被引入,您正在使用v20。升级到最新版。

答案 1 :(得分:0)

我已将我的Android支持库升级到 23.0.1 的最新版本,并且百分之百地工作。