String List数组搜索字符串

时间:2013-04-18 11:55:46

标签: android string search arraylist

我在搜索列表数组时遇到问题,试图找到某个字符串,然后将该字符串存储到名为name的变量中

            private List<String> listview_array1 = new ArrayList<String>();
    private List<String> listview_array2 = new ArrayList<String>();
    private List<String> listview_array3 = new ArrayList<String>();

                    String name1 = null;

    if(listview_array1.contains("The")) {


        //assign value to name1     

        System.out.println(name1);
    }

1 个答案:

答案 0 :(得分:1)

文档是你的朋友。一般来说,如何使用类的任何问题的第一行是查找它的文档。

http://developer.android.com/reference/java/util/ArrayList.html

至于你的问题,你会想要indexof方法。上面的详细信息。