本文介绍了设置活动标题椭圆中间?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个活动,其标题不断变化,但有时它的长,最终得到椭圆。我可以设置椭圆中间?
解决方案
((TextView中)((的FrameLayout)((的LinearLayout)((ViewGroup中)getWindow()
.getDecorView())。getChildAt(0))。getChildAt(0))。getChildAt(0))
.setEllipsize(TextUtils.TruncateAt.MIDDLE);
I have an Activity whose title keeps change, but sometimes its long and get ellipses by end. Can I set ellipse to middle ?
解决方案
((TextView) ((FrameLayout) ((LinearLayout) ((ViewGroup) getWindow()
.getDecorView()).getChildAt(0)).getChildAt(0)).getChildAt(0))
.setEllipsize(TextUtils.TruncateAt.MIDDLE);
got it from android:set title bar in middle
这篇关于设置活动标题椭圆中间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!