2010-11-19 95 views
0

如果佈局xml中的layout_width設置爲fill_parent,是否可以獲得線性/相對佈局的寬度?例如,我有以下佈局xml。是否有可能找到cameraSourceScreen的寬度?感謝提前:)獲取線性/相對佈局的寬度?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:id="@+id/CameraSourcesScreen" 
> 

<LinearLayout android:id="@+id/button_bar" 
android:layout_height="wrap_content" 
android:layout_width="fill_parent" 
android:layout_alignParentTop="true" 
android:layout_alignParentLeft="true" 
android:background="@drawable/topbar" 
android:orientation="horizontal" 
android:gravity="center"> 

<LinearLayout android:layout_height="wrap_content" 
    android:layout_width="fill_parent" 
    android:orientation="horizontal" android:paddingLeft="20dp"> 

     <common.view.ToggleButton android:id="@+id/Near_Toggle" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_marginRight="2dp" 
      android:layout_alignParentLeft="true" 
      android:layout_centerVertical="true" android:text="@string/NEAR_STR" 
      android:textSize="18px" android:width="130dp"/> 

    <common.view.ToggleButton android:id="@+id/Far_Toggle" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_marginRight="2dp" 
      android:layout_alignParentLeft="true" 
      android:layout_centerVertical="true" android:text="@string/FAR_STR" 
      android:textSize="18px" android:width="130dp"/> 

</LinearLayout> </LinearLayout> </RelativeLayout> 

回答

4

您可以添加一個機器人:ID您RelativeLayout,然後調用findViewById爲您的小部件的休息做,然後使用方法的getWidth。雖然......看起來您的RelativeLayout正在填滿整個屏幕,那麼爲什麼不嘗試瞭解屏幕尺寸呢?

Display display = getWindowManager().getDefaultDisplay(); 
display.getWidth(); 
+0

哇,不知道我能做到這一點...謝謝:) – iman453 2010-11-19 17:28:37

+0

它不會在Android ICS +填充屏幕,因爲有在底部的圖形按鈕欄。 – Fresheyeball 2012-10-30 15:13:48