Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Android文字对齐 – 像素完美大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
在下面的屏幕截图中,我试图让蓝色框中的文本在中心对齐.它是降低,需要提升一个像素或两个像素.我一直在玩填充,但它似乎没有任何影响.

布局XML在这里

<RelativeLayout  xmlns:tools="http://scheR_821_11845@as.android.com/tools"
android:orientation="horizontal"
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:layout_marginRight="5dp"
xmlns:android="http://scheR_821_11845@as.android.com/apk/res/android">

        <TextView android:id="@+id/tvName" 
        android:layout_width="60dp" 
        android:layout_height="20dp" 
        android:layout_marginLeft="10dp" 
        android:layout_marginRight="10dp" 
        android:layout_marginTop="3dp" 
        android:BACkground="@drawable/rectanglesegment" 
        android:gravity="center"
        android:paddingBottom="2dp" 
        android:text="XXX" android:textSize="16sp" 
        android:textAppearance="?android:attr/textAppearanceMedium"/>

有什么建议?

在收到@Snicolas的反馈后,我现在有以下内容

有了这个布局

<TextView android:id="@+id/tvName" 
android:layout_width="60dp" 
android:layout_height="fill_parent" 
android:layout_marginLeft="10dp" 
android:layout_marginRight="10dp" 
android:layout_marginTop="2dp"
android:layout_marginBottom="2dp"
android:BACkground="@drawable/rectanglesegment" 
android:gravity="center"
android:text="abv" android:textSize="16sp" 
android:textAppearance="?android:attr/textAppearanceMedium"/>

解决方法

看起来顶部的额外房间只有 font padding(用于口音等).试试这个:

<TextView
    ...
    android:includeFontPadding="false"
/>

大佬总结

以上是大佬教程为你收集整理的Android文字对齐 – 像素完美全部内容,希望文章能够帮你解决Android文字对齐 – 像素完美所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。