已采纳回答 / scau_zero
str.subString( beginIndex, lastIndex) ; 参数含义为从beginIndex处开始截取,在lastIndex前截停。比如说“hello world”.subString(0,5);截取到 "hello" ;所以s1应该获得第一个空格前的子字符串,op获得第一个空格后的第一个字符,而str.substring(beginIndex): 参数为子串起始下标, 获得从该起始下标到字符串末尾的子串,则s2应该是空格后2位字符开始到末尾的字符串。在使用这些未知的方法时有时在IDE...
2015-10-19
最新回答 / qq_wh_5
multiText.setTokenizer(new MultiAutoCompleteTextView.CommaTokenizer());
最新回答 / smartsean
不需要,只用在windows下面添加SDK文件夹路径即可,你可以看下我的博客http://www.cnblogs.com/csschn/p/5063178.html
2015-10-16
最新回答 / qq_彼岸花說_0
MarqueeText,java:package com.example.test_3;import android.content.Context;import android.util.AttributeSet;import android.widget.TextView;public class MarqueeText extends TextView { public MarqueeText(Context context) { super(context); // TODO Auto-gen...
2015-10-15