我有以下问题:
当我想将 LinearLayout 放置到 relativelayout 中时,它不会左对齐或右对齐,它仍然有一些空白。
解决方案
从相对布局检查填充
您需要做的第一件事是将顶部RelativeLayout 的宽度属性从“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"
...