0

我想扩展我的 XML 布局,因为我需要在一个屏幕上放置许多按钮。我在文本视图和图像视图下添加了一个滚动视图,但似乎无法扩展布局?我的滚动视图上也出现了 XML 错误布局:

error: Error parsing XML: mismatched tag

这是我的布局,显示了扩展问题。谁能让我知道我做错了什么?:

图片

这是我的 XML - 我知道我有重复的信息。这是一个测试。:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="84dp"
    android:orientation="horizontal" >

    <ImageView
        android:id="@+id/imgLink"
        android:layout_width="60dp"
        android:layout_height="match_parent"
        android:layout_gravity="center_vertical"
        android:layout_weight="0.91"
        android:src="@drawable/menulist" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="165dp"
        android:layout_height="match_parent"
        android:layout_weight="0.14"
        android:gravity="center"
        android:text="Menu"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textSize="40sp" />

</LinearLayout>

<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <Button
        android:id="@+id/btnAdd"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="20dp"
        android:drawableLeft="@drawable/addconmenu"
        android:src="@drawable/addconmenu"
        android:text="Contacts List" />

    <Button
        android:id="@+id/btnView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="20dp"
        android:drawableLeft="@drawable/todo"
        android:src="@drawable/todo"
        android:text="&apos;To Do&apos; List" />

    <Button
        android:id="@+id/btnEdit"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="20dp"
        android:drawableLeft="@drawable/musicmenu"
        android:src="@drawable/musicmenu"
        android:text="Music List" />

       <Button
           android:id="@+id/btnEdit"
           android:layout_width="match_parent"
           android:layout_height="wrap_content"
           android:layout_margin="20dp"
           android:drawableLeft="@drawable/shoppingmenu"
           android:src="@drawable/shoppingmenu"
           android:text="Shopping List" />

           <Button
               android:id="@+id/btnEdit"
               android:layout_width="match_parent"
               android:layout_height="wrap_content"
               android:layout_margin="20dp"
               android:drawableLeft="@drawable/gymmenu"
               android:src="@drawable/gymmenu"
               android:text="Gym List" />

           <Button
               android:id="@+id/btnEdit"
               android:layout_width="match_parent"
               android:layout_height="wrap_content"
               android:layout_margin="20dp"
               android:drawableLeft="@drawable/appointmentmenu"
               android:src="@drawable/appointmentmenu"
               android:text="Appointment List" />

</LinearLayout>

</LinearLayout>
</ScrollView>
4

2 回答 2

3

看起来您应该颠倒布局最后两行的顺序。您ScrollView在关闭顶级标签后关闭LinearLayout标签。

于 2013-01-17T19:11:00.077 回答
1

ScrollView 内部的 Linear Layout 高度是 wrapcontent,如果你让它匹配 parent 或 fillparent 它将解决你的问题。

于 2015-09-22T11:29:00.023 回答