两个并排的按钮只显示了一个【安卓开发布局问题 wrap_content】

今天为正在学习的安卓项目增加了两个按钮,竖屏的时候正常,上下排列,如下图:


“Choose Suspect” 和 "Send Crime Report" 按钮上下排列。

但是还要考虑横屏的情况,希望横屏的时候两个按钮能够显示在同一行上,目前横屏的情况如下:



第二个“Send Crime Report”按钮消失了。。。

然后看了一下布局文件:


<span style="white-space:pre">	</span><Button android:id="@+id/crime_suspectButton"
        	android:layout_width="match_parent"
        	android:layout_height="wrap_content" 
        	android:layout_marginLeft="16dp" 
        	android:layout_marginRight="16dp" 
        	android:text="@string/crime_suspect_text"/>
    
    	<Button android:id="@+id/crime_reportButton"
        	android:layout_width="match_parent"
        	android:layout_height="wrap_content" 
        	android:layout_marginLeft="16dp" 
        	android:layout_marginRight="16dp" 
        	android:text="@string/crime_report_text"/>


问题出在哪里呢?其实是出在layout_width这个属性上了。如果设置为 match_parent的话,第一个按钮就把父容器占满了,第二个按钮就没地方了。

稍微修改一下,把两个按钮的layout_width 都设为warp_content, 然后就布局就正常了,两个按钮在同一行了。

两个并排的按钮只显示了一个【安卓开发布局问题 wrap_content】_第1张图片

你可能感兴趣的:(两个并排的按钮只显示了一个【安卓开发布局问题 wrap_content】)