我正在开发Android应用程序,该应用程序应该在2.1上运行到最新版本(现在为4.4)。到目前为止一切正常,因为应用程序决定停止在我的Android 2.2设备上运行。在附图中,我认为你应该知道能够帮助我的一切。 我真的不知道造成这种情况的原因,因为我的Android 4.3.1设备上的app运行正常。 我得到的错误是这样的: "二进制XML文件行#25:错误膨胀类android.support.v7.internal.widget.ActionBarView"
它在SetContentView(Resources.Layout.Main);中给出错误,直到现在一直运行良好。 我已经删除了main.axml文件并对其进行了读取,但没有任何改变,我应该更改什么? 这是main.axml文件代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="12dp">
<FrameLayout
android:id="@android:id/content"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:id="@+id/content_frame"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</FrameLayout>
</LinearLayout>