但是对于android:gravity =“center_vertical”,我只能显示文本的上半部分,其中一些底部被截断.
这是我的代码:
<TextVIEw androID:layout_wIDth="wrap_content" androID:layout_height="30px" androID:textSize="40px" androID:text="ABCDEFG" androID:gravity="center_vertical" />
谁知道有办法做到这一点?谢谢!
解决方法 你不能简单地将它包装在一个设置为适当大小的linearVIEw中,并将textvIEw中的边距调整为大约一半(取决于填充)字体大小?<linearLayoutxmlns:androID="http://schemas.androID.com/apk/res/androID"androID:layout_wIDth="fill_parent"androID:layout_height="20dp"androID:background="@androID:color/white"> <TextVIEw androID:gravity="center" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:textcolor="@androID:color/black" androID:text="Sliced in half" androID:textSize="60dp" androID:layout_margintop="-30dp"/></linearLayout>
导致:
http://i.stack.imgur.com/jEdxx.png
总结以上是内存溢出为你收集整理的如何在Android的窄文本视图中垂直居中文本?全部内容,希望文章能够帮你解决如何在Android的窄文本视图中垂直居中文本?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)