0

次の問題があります。

LinearLayout を relativelayout に配置したい場合、左または右に配置されず、まだ空白があります。

解決

相対レイアウトからパディングをチェック

4

1 に答える 1

0

最初に行う必要があるのは、最上位の RelativeLayout の width 属性を「match_parent」から「fill_parent」に変更することです。

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

次に、左レイアウトの幅属性を「match_parent」に変更します

<LinearLayout
    android:id="@+id/LinearLayout3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
...
于 2013-05-31T09:59:32.943 に答える