本文介绍了如何使用 textview.getLayout()?它返回空的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试为 textview
设置布局,以便我可以使用 getEllipsisCount()
方法.但下面的代码返回 null 作为布局值.如何进行布局然后使用 getEllipsisCount(0)
方法.
I’m trying set a layout for textview
so I can use getEllipsisCount()
method. But below code returns null as layout value.How can I take layout and then use getEllipsisCount(0)
method.
public class MainActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView mytextview =(TextView) findViewById(R.id.textView1);
mytextview.setText(myText);
Layout layout = mytextview.getLayout();
if(layout != null){
mytextview.setText("very good layout worked
");
}
}
}
推荐答案
你调用它太早了,这就是它返回 null
You are calling it too early, thats why it is returning null
试试这个
ViewTreeObserver vto = mytextview.getViewTreeObserver();
vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
Layout layout = mytextview.getLayout();
}
});
这篇关于如何使用 textview.getLayout()?它返回空的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!