根據另一個已存在的視圖,是否可以使用RelativeLayout居中水平或垂直對齊XML中的視圖。RelativeLayout:align相對於其他視圖居中水平或垂直
例如:可以說有這樣的事情:
第二個文本視圖應顯示爲中心的第一個文本視圖下方:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginLeft="72dp"
android:text="dynamic text" />
<TextView
android:id="@+id/second"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/textView"
android:layout_marginLeft="43dp" <!-- Is there a rule to center it? -->
android:text="centered below text 1" />
</RelativeLayout>
是有可能實現類似於XML中的東西?有沒有規則,我錯過了?我不想計算位置編程
不,我不想將它居於父母 – sockeqwe 2013-05-12 19:00:42
你需要它 – Noundla 2013-05-12 19:01:18
我修改了答案。檢查一次。 – Noundla 2013-05-12 19:04:59