1
宣佈獲得相對佈局的大小這是我的xml:在XML
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_height="fill_parent"
android:layout_width="fill_parent"
>
<RelativeLayout
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:id="@+id/header"
android:background="@android:color/white"
>
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/btnBack"
android:text="Back"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginLeft="5dp"
/>
<ImageView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:src="@drawable/icon"
android:layout_centerInParent="true"
/>
</RelativeLayout>
<RelativeLayout
android:layout_below="@+id/@+id/header"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:id="@+id/view"
android:layout_above="@+id/footer"
>
</RelativeLayout>
<RelativeLayout
android:id="@+id/footer"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_alignParentBottom="true"
android:background="@android:color/white"
>
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/btn1"
android:text="btn1"
android:layout_alignParentLeft="true"
/>
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/btn2"
android:text="btn2"
android:layout_centerHorizontal="true"
/>
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/btn3"
android:text="btn3"
android:layout_alignParentRight="true"
/>
</RelativeLayout>
</RelativeLayout>
</RelativeLayout>
相對佈局視圖在兩個佈局之間。 我想在我的代碼中獲得這種相對佈局(即高度和寬度)的大小。我通過使用getWidth和getHeight嘗試了它,但它顯示爲0. 還有其他方法嗎?
試過,但它給了我的高度和寬度0 – droid 2012-02-21 14:31:49
這種方式是不是給我結果 – droid 2012-02-21 14:43:21
檢查這項工作很好!!!! – 2012-02-21 14:46:18