当前位置: 编程技术>移动开发
本页文章导读:
▪等上肯定听到。 等下肯定听到。。
等下肯定听到。。
......
▪ textView获取选中的一部分 textView获取选中的部分
int selectionStart = textView.getSelectionStart(); int selectionEnd = textView.getSelectionEnd(); String selectedText = et.getText().substring(selectionStart, selectionEnd);
不过最好经过hasSelection() 判.........
▪ 在AlertDialog中找不到相应控件的解决办法 在AlertDialog中找不到相应控件的解决方法
错误代码如下:AlertDialog dialog;LayoutInflater factory = LayoutInflater.from(this);final View dialogView = factory.inflate(layout, null);dialog = new AlertDialog.Builder(SearchResultIss.........
[1]等上肯定听到。
来源: 互联网 发布时间: 2014-02-18
等下肯定听到。。
等下肯定听到。。
等下肯定听到。。
[2] textView获取选中的一部分
来源: 互联网 发布时间: 2014-02-18
textView获取选中的部分
int selectionStart = textView.getSelectionStart();
int selectionEnd = textView.getSelectionEnd();
String selectedText = et.getText().substring(selectionStart, selectionEnd);
不过最好经过hasSelection() 判断一下
1 楼
javetu_7
2010-07-28
实现不了吧。使用getSelectionStart()必须有光标才能实现的.
[3] 在AlertDialog中找不到相应控件的解决办法
来源: 互联网 发布时间: 2014-02-18
在AlertDialog中找不到相应控件的解决方法
错误代码如下:
AlertDialog dialog;
LayoutInflater factory = LayoutInflater.from(this);
final View dialogView = factory.inflate(layout, null);
dialog = new AlertDialog.Builder(SearchResultIssueActivity.this)
... .create();
Spinner type = (Spinner)dialog.findViewById(R.id.spinner_engineering_type);
在对type进行操作时,报空指针异常。
后来用
Spinner engineeringType = (Spinner)dialogView.findViewById(R.id.spinner_engineering_type);
可以找到该控件。
目前不知道为什么,先干活,作个记号,以后再研究
错误代码如下:
AlertDialog dialog;
LayoutInflater factory = LayoutInflater.from(this);
final View dialogView = factory.inflate(layout, null);
dialog = new AlertDialog.Builder(SearchResultIssueActivity.this)
... .create();
Spinner type = (Spinner)dialog.findViewById(R.id.spinner_engineering_type);
在对type进行操作时,报空指针异常。
后来用
Spinner engineeringType = (Spinner)dialogView.findViewById(R.id.spinner_engineering_type);
可以找到该控件。
目前不知道为什么,先干活,作个记号,以后再研究
最新技术文章: