最近我想在textview中获取特定的行文本,并且我想使用webview来加载文本,我发现了一些我认为有用的代码引用,但对我来说效果不好。
的TextView:
A
Http://ABC.com.jp
C
我想加载第2行网址。
答案 0 :(得分:0)
很抱歉我的责任很低,现在我仍在更新和修改我的源代码,我是java新手,这不是我的主要利润,除了我会继续学习。
Target =(TextView)findViewbyid(R.id.abc);
myTextView = (TextView)findViewbyid(R.id.id1);
int startL= myTextView.getLayout().getLineStart(2);
//^start line
int endL = myTextView.getLayout().getLineEnd(3);
//^end line
String getResults = myTextView.getText().substring(startL, endL);
Target.setText(getResults);
//benefits of using get line end & start is that it can select multiple line content from a large content,also it can be used in selecting single line or specific line.