我的屏幕底部有一个导航栏。我在这个导航栏中有一组3个按钮,按钮有一个图标作为背景按钮,彼此之间没有空格。我一直在谷歌搜索如何将它们彼此分开,但我还没有成功。问题是:我如何将它们彼此分开?这是我的xml代码:
main.xml中
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<LinearLayout
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="#5E767E"
android:gravity="center"
>
<Button
android:layout_height="wrap_content"
android:id="@+id/back"
android:layout_width="wrap_content"
android:background="@drawable/button"
/>
<Button
android:layout_height="wrap_content"
android:id="@+id/home"
android:layout_width="wrap_content"
android:background="@drawable/button"
/>
<Button
android:layout_height="wrap_content"
android:id="@+id/next"
android:layout_width="wrap_content"
android:background="@drawable/button"
/>
</LinearLayout>
</RelativeLayout>
答案 0 :(得分:2)
应用边距或填充,例如:
<Button
android:layout_height="wrap_content"
android:id="@+id/back"
android:layout_width="wrap_content"
android:background="@drawable/button"
android:margin="10dip"
/>
或者:
<Button
android:layout_height="wrap_content"
android:id="@+id/back"
android:layout_width="wrap_content"
android:background="@drawable/button"
android:marginLeft="10dip"
android:marginRight="10dip"
/>
答案 1 :(得分:0)
您是否尝试在其间放置一个空视图?
<Button
android:layout_height="wrap_content"
android:id="@+id/back"
android:layout_width="wrap_content"
android:background="@drawable/button"
/>
<View android:layout_width="2dip" android:layout_height="1dip"/>
<Button
android:layout_height="wrap_content"
android:id="@+id/home"
android:layout_width="wrap_content"
android:background="@drawable/button"
/>
<View android:layout_width="2dip" android:layout_height="1dip"/>
<Button
android:layout_height="wrap_content"
android:id="@+id/next"
android:layout_width="wrap_content"
android:background="@drawable/button"
/>
根据您的需要使用它的宽度和高度。它通常对我有用。