显示输出在Android中使用字符串中的Arraylist

时间:2017-05-20 18:40:40

标签: android arraylist textview

在这个应用程序中,我需要显示检查或取消选中名称。我能够成功地做到这一点。但是我的输出有每个输出的开始和结束方括号和逗号,如图所示。我希望它只是没有任何方括号的名称** [] **和逗号**,​​* screenshot

$(document).on('click',".show-button",function(){
    var imgTmpl = '<div class="img-container">'+
               '<button  style="display: none;" type="submit" class="btn btn-danger show-button">'+
               '<i class="glyphicon glyphicon-trash"></i>'+
                '</button></div>';
    $(this).parent().remove();
    $('body').append(imgTmpl);
});

1 个答案:

答案 0 :(得分:-1)

您可以使用以下方法

public static String listToString(List<String> list)
     {
         return TextUtils.join(",", list);
     }

     public static List<String> stringToList(String string)
     {
        if(string==null)
            return new ArrayList<String>();
        else
            return new ArrayList<String>(Arrays.asList(TextUtils.split(string, ",")));
     }