如果在布局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>
答案 0 :(得分:4)
您可以向RelativeLayout
添加android:id,然后像对其余小部件一样调用findViewById
,然后使用getWidth方法。虽然......似乎你的RelativeLayout
正在填满整个屏幕,所以为什么不尝试了解屏幕尺寸呢?
Display display = getWindowManager().getDefaultDisplay();
display.getWidth();