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>