搜索栏搜索TextViews

时间:2016-04-15 11:52:04

标签: java android android-studio

我已经在RelativeLayout内的ScrollView内创建了一个拥有多家保险公司的应用程序。每家保险公司都在LinerarLayout之内。是否可以使用搜索栏来搜索TextView并仅返回已搜索的TextView

我的代码就像休耕一样

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingBottom="@dimen/activity_vertical_margin"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_vertical_margin"
        android:background="@drawable/bg"
        tools:context="saveourcar.soc.Insurance">
        <ScrollView
            android:id="@+id/ScrollView01"
            android:layout_width="580dp"
            android:layout_height="fill_parent" >

        <RelativeLayout
            android:id="@+id/RelativeLayout01"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent" >

    <LinearLayout
        android:id="@+id/LinearLayout01"
        android:layout_width="580dp"
        android:layout_height="fill_parent"
        android:orientation="vertical"
        >

    <TextView
        android:id="@+id/TextView01"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="20dip"
        android:clickable="true"
        android:fontFamily="sans-serif-condensed"
        android:textSize="27dp"
        android:text="@string/chooseinsurance"/>
        <LinearLayout
            android:id="@+id/list_item9"
            android:layout_width="match_parent"
            android:layout_height="62dp"
            android:layout_below="@+id/list_item"
            android:layout_centerHorizontal="true"
            android:layout_centerInParent="true"
            android:gravity="center_vertical"
            android:background="#26BFDA" >

            <ImageView
                android:layout_width="33dp"
                android:layout_height="match_parent"
                android:layout_marginRight="15dp"
                android:src="@drawable/onetwothree" />

            <TextView
                android:id="@+id/TextView08"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="wrap_content"
                android:textSize="21sp"
                android:textColor="#ffffff"
                android:text="@string/oneTwoThree"/>
            <ImageView
                android:layout_width="51dp"
                android:layout_height="20dp"
                android:layout_alignParentRight="true"
                android:onClick="onClick123Arrow"
                android:src="@drawable/nextarrow" />

            <!-- Put line under text -->


        </LinearLayout>
        <View
            android:layout_width="fill_parent"
            android:layout_height="2dp"
            android:background="#c0c0c0" />

        <LinearLayout
            android:id="@+id/list_item10"
            android:layout_width="match_parent"
            android:layout_height="62dp"
            android:layout_below="@+id/list_item"
            android:layout_centerHorizontal="true"
            android:layout_centerInParent="true"
            android:gravity="center_vertical"
            android:background="#26BFDA" >

            <ImageView
                android:layout_width="33dp"
                android:layout_height="match_parent"
                android:layout_marginRight="15dp"
                android:src="@drawable/acorn" />


            <TextView
                android:id="@+id/TextView10"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="wrap_content"
                android:textSize="21sp"
                android:textColor="#ffffff"
                android:text="@string/acorn"/>
            <ImageView
                android:layout_width="51dp"
                android:layout_height="20dp"
                android:layout_alignParentRight="true"
                android:onClick="onClickAcornArrow"
                android:src="@drawable/nextarrow" />



        </LinearLayout>
        <View
            android:layout_width="fill_parent"
            android:layout_height="2dp"
            android:background="#c0c0c0" />


        <LinearLayout
            android:id="@+id/list_item11"
            android:layout_width="match_parent"
            android:layout_height="62dp"
            android:layout_below="@+id/list_item"
            android:layout_centerHorizontal="true"
            android:layout_centerInParent="true"
            android:gravity="center_vertical"
            android:background="#26BFDA" >

            <ImageView
                android:layout_width="33dp"
                android:layout_height="match_parent"
                android:layout_marginRight="15dp"
                android:src="@drawable/admiral" />


            <TextView
                android:id="@+id/TextView11"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="wrap_content"
                android:textSize="21sp"
                android:textColor="#ffffff"
                android:text="@string/admiral"/>
            <ImageView
                android:layout_width="51dp"
                android:layout_height="20dp"
                android:layout_alignParentRight="true"
                android:onClick="onClickAdmiralArrow"
                android:src="@drawable/nextarrow" />



        </LinearLayout>
        <View
            android:layout_width="fill_parent"
            android:layout_height="2dp"
            android:background="#c0c0c0" />

</RelativeLayout>
        </ScrollView>
    </RelativeLayout>

每个保险公司直接位于另一个保险公司之下View。这只是我代码的一小部分。这张照片是我目前保险活动的样子。

enter image description here

2 个答案:

答案 0 :(得分:0)

我不确定你想要完成什么,但我认为你的问题有一个更简单的解决方案。

Library that might help you a lot

答案 1 :(得分:0)

尝试这样的事情

在活动顶部添加一个edittext作为搜索栏和

EditText searchedittext = (EditText) findViewById(R.id.search_layoutEditText);

        String edittxt = searchedittext.getText().toString();
        if(edittxt.isEmpty()){

                //display a dialog or toast saying no results found
               }else{
                          //write the condition to display the textviews matching the searched insurance company

      ◆                 }

正如ankitagarwal所说使用列表视图会很容易