繁体   English   中英

如何删除TextView上边距?

[英]How to remove TextView top margin?

我确实遇到TextView问题。 我不希望它上面有任何边距/填充。

<TextView android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:id="@+id/ptp_hour"
          android:textColor="@color/black"
          android:textSize="100dp"
          android:height="100dp"
          android:layout_marginTop="0dp"
          android:paddingTop="0dp"
          android:includeFontPadding="false"
          android:maxLines="1"
          android:text="10"/>

我的TextView看起来像这样,尽管textSizeheight设置为相同的值,但字体上方还有一个空格。 这让我感到困扰,因为我想把另一个视图放在相对于字体的顶部。 这个间距是否包含在字体本身中?

RelativeLayout中的TextView

还有一个问题:如果我发现距离顶部20dp和底部7dp的余量在我的设备上完美运行,我可以依赖它在其他屏幕上的表现方式相似吗? (这些边距适用于按钮)

使用android:includeFontPadding="false"在类似的情况下帮助了我很多。

我有同样的问题,设置android:includeFontPadding=false没有帮助。 我能在合理的时间内找到的最佳解决方案是覆盖TextView的onDraw方法,并调整画布以获取字体度量的top和ascent值之间的差异:

FontMetricsInt fontMetricsInt;
@Override
protected void onDraw(Canvas canvas) {
    if (adjustTopForAscent){
        if (fontMetricsInt == null){
            fontMetricsInt = new FontMetricsInt();
            getPaint().getFontMetricsInt(fontMetricsInt);
        }
        canvas.translate(0, fontMetricsInt.top - fontMetricsInt.ascent);
    }
    super.onDraw(canvas);
}

你需要做的是将另一个视图放在相对于字体顶部的位置,并在dip中给它一个负面的android:layout_marginBottom ,使其与字体的顶部相匹配。 如果字体有边距,我认为没有更好的方法。

是的,默认包含此空格。 您无法根据我的搜索区域删除该空间。 所以你需要实现一些逻辑来拥有这样的视图。

见下图:

在此输入图像描述

它不是一个好主意,但你可以像下面的代码:

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="wrap_content" android:layout_width="wrap_content"
    android:background="#ffffff">
    <TextView android:layout_width="wrap_content"           
        android:layout_height="wrap_content"           
        android:id="@+id/ptp_hour"           
        android:textColor="@android:color/black"           
        android:textSize="100sp"
        android:lineSpacingMultiplier="0.8"
        android:scrollY="-100dp"
        android:scrollX="100dp"
        android:text="10"/>
    <TextView 
        android:text="10"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:textColor="#00FFFFFF"
        android:shadowColor="#000000"
        android:shadowDy="-50"
        android:shadowRadius="1"
        android:textSize="100dp"/>

</LinearLayout>

在这里,第一个“10”是你的属性,第二个是我为你设置的。

请享用。 :))

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM