-2

我在搜索列表数组时遇到问题,试图找到某个字符串,然后将该字符串存储到一个名为 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);
    }
4

1 回答 1

1

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

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

至于您的问题,您将需要 indexof 方法。详情见上页。

于 2013-04-18T12:03:18.210 回答