我正在尝试为我的布局添加一个操作栏,但它给了我一个多根标签错误。
这是我的代码。
请帮帮我
编辑:
这是完整的xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar android:id="@+id/my_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
xmlns:android="http://schemas.android.com/apk/res/android" />
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
android:layout_height="match_parent">
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:stretchColumns="1"
android:layout_margin="4dp">
<CheckBox
android:id="@+id/c1"
android:layout_width="match_parent"
android:layout_height="70dp"
android:textSize="20sp"
android:text="@string/c1"
android:layout_margin="2dp"
android:onClick="onCheckboxClicked"
android:background="#00FF00"/>
答案 0 :(得分:0)
尝试这种布局结构:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/my_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="4dp"
android:stretchColumns="1">
<CheckBox
android:id="@+id/c1"
android:layout_width="match_parent"
android:layout_height="70dp"
android:layout_margin="2dp"
android:background="#00FF00"
android:onClick="onCheckboxClicked"
android:text="asdf"
android:textSize="20sp" />
</TableLayout>
</ScrollView>
</LinearLayout>
答案 1 :(得分:0)
- ScrollView只能有一个孩子。如果您想要多个,请将它们包装在布局中。
- 任何xml文件中必须只有一个根布局。了解root标记和xml命名空间
醇>
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:layout_width="match_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/my_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:stretchColumns="1"
android:layout_margin="4dp">
<CheckBox
android:id="@+id/c1"
android:layout_width="match_parent"
android:layout_height="70dp"
android:textSize="20sp"
android:text="@string/c1"
android:layout_margin="2dp"
android:onClick="onCheckboxClicked"
android:background="#00FF00"/>
</TableLayout>
</ScrollView>
</RelativeLayout>