0
這裏就是我想要做的事: 的Android RelativeLayout的一個片段
我的代碼:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<fragment
android:id="@+id/paf"
android:name="com.google.android.gms.location.places.ui.PlaceAutocompleteFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true" />
<Space
android:id="@+id/brightnessSeekBar"
android:layout_width="1dp"
android:layout_height="50dp"
android:layout_toLeftOf="@id/imageView"
android:layout_toRightOf="@id/paf" />
<ImageView
android:id="@+id/imageView"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_alignParentRight="true"
android:clickable="true"
android:src="@drawable/localization" />
</RelativeLayout>
的問題是,該片段充滿了一切與「match_parent」,但得到的小帶「WRAP_CONTENT」 我已經嘗試在Android官方指南顯示寬度= 「0dp」
大小片段是50dp? –
我不知道,沒關係 –