我是XML的新手,我到处寻找这个错误的解决方案,但是从我可以说的是,由于各种原因,不明确的错误可能会发生,并且对于您正在编写的特定代码而言是独一无二的。希望你们中的一些人能够提供帮助,我想要做的是让线性布局在我的Android应用程序中有一个可滚动的功能,但我似乎无法让它工作,我的代码在下面。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:layout_height="wrap_content"
android:id="@+id/linearLayout2"
android:layout_width="match_parent">
<Button
android:layout_height="50dp"
android:layout_weight=".30"
android:text="Cancel"
android:layout_width="0dp"
android:id="@+id/cancel" />
<Button
android:layout_height="50dp"
android:layout_weight=".35"
android:text="Clear"
android:layout_width="0dp"
android:id="@+id/clear" />
<Button
android:layout_height="50dp"
android:layout_weight=".35"
android:text="Save"
android:layout_width="0dp"
android:id="@+id/getsign" />
</LinearLayout>
<TableLayout
android:layout_height="wrap_content"
android:id="@+id/tableLayout1"
android:layout_width="match_parent">
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<EditText
android:layout_height="wrap_content"
android:id="@+id/yourName"
android:layout_weight="1"
android:layout_width="match_parent"
android:maxLength="30"
android:inputType="textCapWords"
android:hint="Please enter your name">
<requestFocus />
</EditText>
</TableRow>
<TableRow
android:id="@+id/tableRow3"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:layout_height="wrap_content"
android:id="@+id/textView2"
android:text="Please sign below using your finger"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="fill_parent" />
</TableRow>
</TableLayout>
<Scrollview
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/scrollview"
<LinearLayout
android:layout_height="match_parent"
android:id="@+id/linearLayout"
android:layout_width="match_parent" />
</Scrollview>
</LinearLayout>
我的错误发生在第67行,即代码中的第二个LinearyLayout标记。它抛出我标题中提到的确切错误,我尝试了很多修复。代码完美无缺