這看起來像我的Android設計有問題。這裏的問題是:Textview響應邊距/填充
正如你所看到的, 「HTTP:// LABEL 2 GOES HERE」 是正確的標籤1文本的頂部:「這僅僅是標籤1測試.. .....「我怎麼能這樣做,以便」http:// LABEL 2 GOES HERE「將永遠在」標籤1「30dp以下,無論它有多長或多短?
我怎樣才能讓這個
這裏是我的XML文件:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:tools="http://schemas.android.com/tools"
android:layout_height="match_parent"
android:layout_width="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
<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="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:minHeight="1000dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="About:"
android:id="@+id/about"
android:textSize="16dp"
android:layout_marginTop="30dp"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:id="@+id/label1"
android:textSize="16dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Website:"
android:id="@+id/website"
android:textSize="16dp"
android:layout_marginTop="30dp"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:id="@+id/label2"
android:textSize="16dp"
android:autoLink="web"/>
</RelativeLayout>
</ScrollView>
您可以包括XML,你已經爲這一點。 – buczek
@buczek我剛剛用XML代碼編輯了OP。 – johnny880