我想将TextVIEw中的文本相对于父布局居中,而不是相对于textvIEw.
想要将相对于我的屏幕宽度的文本List_Title居中的此代码中的示例:
<?xml version="1.0" enCoding="utf-8"?><linearLayoutandroID:layout_wIDth="fill_parent"androID:layout_height="wrap_content"><TextVIEw androID:layout_weight="75" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:ID="@+ID/List_Title" /> <button androID:layout_weight="15" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:minWIDth="90px" androID:text="@string/filter" androID:visibility="gone" androID:ID="@+ID/button_filter" /></linearLayout>
你有解决方案吗?
谢谢你的帮助
解决方法:
嗯,这不是一个很好的解决方案,但如果你知道你的标题长度,你可以添加
androID:paddingleft="160dip"
到你的textvIEw.
将160dip替换为160 – 你的标题/ 2的长度,它将几乎集中在所有屏幕上……
编辑:或者如果您想要其他解决方案,则必须使用相对布局.
总结以上是内存溢出为你收集整理的android – 相对于布局的中心文本全部内容,希望文章能够帮你解决android – 相对于布局的中心文本所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)