文章列表
解决方法:
在TextField源码上 加上editString();函数:
public void pointerReleased(int x, int y) {
// unlike text area the text field supports shifting the cursor with the touch screen
editString();
String text = getText();
int textLength = text.length();
int position = 0; ...
package com;
import java.util.Vector;
public class strDeal {
public static String[] split(String original, String regex) {
// 取子串的起始位置
int startIndex = 0;
// 将结果数据先放入Vector中 注意应当引入
Vector v = new Vector();
// 返回的结果字符串数组
String[] str = null;
// 存储取子串时起始位置
int index = 0;
// 获得匹配子串 ...