我在这个XML文件中收到某处的错误,但是eclipse给了我 no 有关哪些行和lint显示 no 错误的信息。所以,
(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>
答案 0 :(得分:2)
您缺少xml表示法
<?xml version="1.0" encoding="utf-8"?>
编辑: 其他一切看起来都不错。确保你的minApi是11.你需要那些你正在使用的样式。 还有方法来优化该布局。一个LinearLayout应该完成这项工作。
答案 1 :(得分:0)
检查logcat消息,它将显示错误的行号。