Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了android – 如何在LinearLayout中的两个按钮之间的差距大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的应用程序中,两个按钮垂直排列在LinearLayout中.我想在两个按钮之间提供一个间隙.请提供解决方案…… @H_772_2@我的布局如下

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://scheR_470_11845@as.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:orientation="vertical"
  android:padding="10dp"
  >
<Button
    android:id="@+id/btnAction1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:BACkground="@drawable/cool_button"
    android:text = "HiText1"
/>

<Button
    android:id="@+id/btnAction2"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:BACkground="@drawable/cool_button"
    android:text="HiText2"
    android:layouT_Below="@id/btnAction1"
/>        

</LinearLayout>
@H_772_2@图片

@H_772_2@提前致谢

解决方法

在第二个按钮的顶部添加一个边距(android:layout_marginTop =“50dp”):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
 xmlns:android="http://scheR_470_11845@as.android.com/apk/res/android"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:orientation="vertical"
 android:padding="10dp"
 >
<Button
   android:id="@+id/btnAction1"
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:BACkground="@drawable/cool_button"
   android:text = "HiText1"
/>

<Button android:layout_marginTop="50dp"
   android:id="@+id/btnAction2"
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:BACkground="@drawable/cool_button"
   android:text="HiText2"
   android:layouT_Below="@id/btnAction1"
/>        

</LinearLayout>

大佬总结

以上是大佬教程为你收集整理的android – 如何在LinearLayout中的两个按钮之间的差距全部内容,希望文章能够帮你解决android – 如何在LinearLayout中的两个按钮之间的差距所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。