0

TextView_height=content_height+padding 当我向文本框添加一些顶部填充时,我将如何制作- 它将内容移动到 TextView 的边框后面。这是正确的,因为我使 TextView 与内容一样高。

是否可以使 TextView 与内容 + 填充一样高?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:focusable="false"
tools:context=".DisplayActivity" >

<TextView
    android:id="@+id/TopmessageStripe"
    style="@style/TopmessageStripeTheme"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:layout_alignWithParentIfMissing="false"
    android:layout_centerHorizontal="true"
    android:height="@dimen/big_margin"
    android:paddingTop="5dp"
    android:text="TextView" />

    </RelativeLayout>

在此处输入图像描述

4

2 回答 2

2

这很可能是你的问题

android:height="@dimen/big_margin"

它设置自定义高度而不是包装内容。

于 2013-08-01T11:59:30.550 回答
0

不确定如何使用 gui 来执行此操作,但这可能是您在 xml 中为文本视图寻找的内容

<TextView 
        android:id="@+id/mTextView"
        android:paddingTop="5dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"      
        >
    </TextView>
于 2013-08-01T11:56:45.523 回答