我有以下问题:
当我想将一个LinearLayout放入一个relativelayout时,它不会向左或向右对齐,它仍然有一些空格。
解决方案
检查相对布局的填充
答案 0 :(得分: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"
...
其次,我将左侧布局的width属性更改为“match_parent”
<LinearLayout
android:id="@+id/LinearLayout3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
...