新项目崩溃,原因是android.support.v7.widget.toolbar类膨胀错误

新项目崩溃,原因是android.support.v7.widget.toolbar类膨胀错误,android,Android,当我更新我的SDK并将android支持库更新到最新版本时,问题出现在eclipse中,现在它使所有新的项目崩溃(appcompat提供的工具栏作为默认操作栏怎么样?) 在API 19上,缺少abc_ic_ab_back_material,这是appcompat-v7 23.2中引入的向量可绘制 您有3种选择: a)返回到23.1.1,它不使用矢量兼容 b)在构建项目时,找到一种将“--no version vectors”参数传递给aapt的方法。这将保持矢量绘图甚至在棒棒糖 c)尽快转到An

当我更新我的SDK并将android支持库更新到最新版本时,问题出现在eclipse中,现在它使所有新的项目崩溃(appcompat提供的工具栏作为默认操作栏怎么样?)

在API 19上,缺少abc_ic_ab_back_material,这是appcompat-v7 23.2中引入的向量可绘制

您有3种选择:

a)返回到23.1.1,它不使用矢量兼容

b)在构建项目时,找到一种将
“--no version vectors”
参数传递给aapt的方法。这将保持矢量绘图甚至在棒棒糖

c)尽快转到Android Studio。然后按照这个


d)将support libs更新到23.2.1,这不会强制您根据使用vector compat。

下次复制logcat怎么样?重要(右)部分丢失,使其无用。重要部分?哪一个?全文。我们只看到了一半。“AndroidRuntime”没有告诉我们任何信息。请现在检查,我将所有图像替换为新的。它表示错误正在膨胀工具栏,但您的布局xml没有工具栏。共享昨晚发布的xmlversion23.2.1的权利,更新到该版本。它不使用vector compat,所以您在这件事上应该没有问题。
Here is my Logcat error
there is no code in activity class  and this is xml 

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.newdemopro.MainActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

</RelativeLayout>
i tried it many times from googling but i still don't get it..