0

我在这个 XML 文件的某个地方遇到了错误,但是 eclipse没有给我关于哪一行和 lint没有显示错误的信息。所以,

(a) 我到底应该如何找到错误?

(b) 谁能告诉我出了什么问题?

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:divider="?android:attr/dividerVertical"
    android:dividerPadding="12dp"
    android:orientation="horizontal"
    android:baselineAligned="false"
    android:showDividers="middle" >

    <FrameLayout
        android:id="@+id/actionbar_cancel"
        style="?android:actionButtonStyle"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1" >

        <TextView
            style="?android:actionBarTabTextStyle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:drawableLeft="@drawable/ic_action_accept"
            android:drawablePadding="8dp"
            android:gravity="center_vertical"
            android:paddingRight="20dp"
            android:text="@string/save" />
    </FrameLayout>

    <FrameLayout
        android:id="@+id/actionbar_done"
        style="?android:actionButtonStyle"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1" >

        <TextView
            style="?android:actionBarTabTextStyle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:drawableLeft="@drawable/ic_action_cancel"
            android:drawablePadding="8dp"
            android:gravity="center_vertical"
            android:paddingRight="20dp"
            android:text="@string/cancel" />
    </FrameLayout>

</LinearLayout>
4

2 回答 2

2

您缺少 xml 符号 <?xml version="1.0" encoding="utf-8"?>

编辑:其他一切看起来都很好。确保你的 minApi 是 11。你需要为你正在使用的样式。还有一些方法可以优化该布局。一个 LinearLayout 应该可以完成这项工作。

于 2013-11-12T14:10:54.537 回答
0

检查 logcat 消息,它将显示错误的行号。

于 2013-11-12T14:06:53.907 回答