2

我正在尝试将元素添加到我的滚动视图中,此滚动视图内部具有垂直线性布局。(我添加了另一个线性布局 - 水平线,里面将根据我分配的属性管理 2 个文本视图和一个图像),

我正在尝试将此内部布局的元素添加到我的滚动视图(id=insideLineLayout)(添加到滚动视图的每个元素都将包含这两个文本和一个图像),因为滚动视图只能有 1 个孩子我无法做到这一点. 将不胜感激一些帮助,这里似乎没有任何工作。谢谢。

我当前的 xml 代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:id="@+id/searchScreenOuterLinearLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
         >

        <TextView
            android:id="@+id/catagoryselectedText"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="70dp"
            android:text="selected catagory"
            android:textSize="20dp" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="20dp"
        android:layout_marginTop="12dp"
        android:orientation="horizontal" >

        <EditText
            android:id="@+id/searchText"
            android:layout_width="200dp"
            android:layout_height="wrap_content"
            android:layout_marginLeft="8dp" />

        <ImageButton
            android:id="@+id/searchButton"
            android:layout_width="50dp"
            android:layout_height="40dp"
            android:background="@drawable/search_icon" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="20dp"
        android:layout_marginRight="10dp"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/radiusText"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="5dp"
            android:paddingTop="5dp"
            android:text="Search Radius"
            android:textAppearance="?android:attr/textAppearanceMedium" />

        <SeekBar
            android:id="@+id/radiusBar"
            android:layout_width="140dp"
            android:layout_height="wrap_content"
            android:layout_marginLeft="20dp" />
    </LinearLayout>





    <ScrollView
        android:id="@+id/searchScrollView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >

        <LinearLayout
            android:id="@+id/searchScrollViewLinear"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical"
            android:paddingTop="10dp" >

            <LinearLayout
                android:id="@+id/insideLineLayout"
                android:layout_width="fill_parent"
                android:layout_height="30dp"
                android:orientation="horizontal"
                android:weightSum="100"
                 >

                <TextView
                    android:id="@+id/linesPrice"
                    android:layout_weight="20"
                    android:layout_width="wrap_content"
                    android:layout_height="fill_parent"
                    android:text="tmp1"
                    android:textAppearance="?android:attr/textAppearanceMedium" />

                <TextView
                    android:id="@+id/linesInfo"
                     android:layout_weight="60"
                    android:layout_width="wrap_content"
                    android:layout_height="fill_parent"
                    android:paddingLeft="15dp"
                    android:paddingRight="15dp" 
                    android:text="tmp2"
                    android:textAppearance="?android:attr/textAppearanceMedium" />


                <ImageView
                    android:id="@+id/imageInfo"
                    android:layout_width="40dp"
                    android:layout_height="match_parent"
                    android:background="@drawable/tv_icon" />

            </LinearLayout>





        </LinearLayout>
    </ScrollView>

</LinearLayout>
4

1 回答 1

0

考虑一下您的列表可以得到多长时间,因为ListView已经在许多方面进行了优化,而常规滚动视图则没有。如果您有太多元素,您可能会开始出现内存不足异常。

为了向 a 动态添加视图,ScrollView您首先需要在ScrollView(很可能是 a LinearLayout)中获取容器视图,然后您只需为添加的每个视图执行以下操作:

View view = inflater.inflate(R.layout.view_to_add, container, false); // this is used if you create from xml, if you make it in code you'd use the regular constructor.
// update the view content (view.findViewById(); etc.)
container.addView(view);
于 2013-03-07T18:20:39.383 回答