我在数据库中有一个非常长的字符串,需要将其检索到滑动视图中。
但问题是该字符串包含一组“ \ n \ n ”
每当用这个表达式分隔时我需要将它放在另一张幻灯片中,我的意思是我在这里使用SWIPE视图..
if(tablecolumn==\\n\\n)
{
code to break it to parts
}
这是我应该怎么做的吗?
如果我错了,如何将此字符串分解为不同的部分并将其启用到 SWIPE VIEW 中以进入不同的滑动视图?
答案 0 :(得分:2)
你可以简单地打破包含这样一个特殊字符的字符串: -
String str ="mynameisjhon.yournameisdash.bla";
,这里有一个与“。”连接的字符串(句号)
打破这个字符串这样做: -
StringTokenizer st = new StringTokenizer(str, "."); //break the string whenever "." occurs
String temp =st.nextToken(); // it will have "my name is jhon" break
String temp2 = st.nextToken();// it will have "your name is dash"
String temp3 = st.nextToken();//it will have "bla"
现在你的字符串被分成几部分! 还有什么吗?
答案 1 :(得分:0)
将整个字符串加载到ViewAdapter中,并通过子字符串单独分隔 或者在Activity / Fragment中加载字符串,通过子字符串将其分隔,将字符串放在ArrayList中,使用ArrayList作为数据源启动ViewAdapter
使用substring