我該如何製作TextView_height=content_height+padding
當我向文本框添加一些頂部填充時 - 它將內容移動到TextView邊框的後面。 這是對的,因爲我使TextView與內容一樣高。在Android中:如何強制TextView包裝內容和填充
是否有可能使TextView與content + padding一樣高?
<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>
您可以粘貼xml定義嗎? – yarakyo