有人可以請解釋一下嗎?
爲什麼第三個TextView很奇怪? Android文本視圖 - 剪掉頂部和底部邊緣
爲2號線的定義之前都是一樣的,我也沒碰過用java風格...
編輯:我已經添加了XML佈局文件。 的XML:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rl"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="top" >
<TextView
android:id="@+id/quadEqu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="25dp"
android:text="@string/quadequ"
android:textSize="27sp" />
<Button
android:id="@+id/closeBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="30dp"
android:text="@string/close"
android:onClick="close" />
<TextView
android:id="@+id/stepOne"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/quadEqu"
android:layout_centerHorizontal="true"
android:layout_marginTop="25dp"
android:text="@string/quadEquForm"
android:textSize="18sp" />
<TextView
android:id="@+id/stepTwo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/stepOne"
android:layout_below="@+id/stepOne"
android:text="@string/quadEquForm"
android:textSize="18sp" />
<TextView
android:id="@+id/stepThree"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/stepOne"
android:layout_below="@+id/stepTwo"
android:text="@string/quadEquForm"
android:textSize="18sp" />
</RelativeLayout>
你能發佈你的佈局xml文件嗎? – Yjay
@Yjay後編輯。 – AnDrOiD