gpt4 book ai didi

android如何在按钮之间留出一些空间并在每个按钮上方制作白线

转载 作者:行者123 更新时间:2023-11-29 15:24:03 25 4
gpt4 key购买 nike

我有两个带有 xml 背景的按钮,我想在它们之间保留一些空间,因为它们正好在彼此之间过去,我还想在它们上面放白线,我会告诉你我是如何尝试的,但它没有不要和我一起工作

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="25dip"

android:orientation="horizontal"

android:weightSum="2" >

<Button
android:background="@drawable/button_selector"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textColor="#FFFFFF"
android:gravity="center"
android:textStyle="bold"
android:text="@string/b_save" />

<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textColor="#FFFFFF"
android:gravity="center"
android:background="@drawable/button_selector"
android:text="@string/b_cancel" />
</LinearLayout>

xml背景

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">

<padding android:top="10dip"
android:bottom="10dip"/>



<!-- Gradient Bg for listrow -->
<gradient
android:useLevel="false"
android:angle="270"
android:centerColor="#000000"
android:endColor="#FFFFFF"
android:startColor="#808080" />
</shape>

enter image description here

最佳答案

检查一下

enter image description here

bg_选择器.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">

<padding android:top="10dip"
android:bottom="10dip"/>



<!-- Gradient Bg for listrow -->
<gradient
android:useLevel="false"
android:angle="270"
android:centerColor="#808080"
android:endColor="#000000"
android:startColor="#FFFFFF" />
</shape>

按钮_bg.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">

<padding android:top="10dip"
android:bottom="10dip"/>



<!-- Gradient Bg for listrow -->
<gradient
android:useLevel="false"
android:angle="270"
android:centerColor="#000000"
android:endColor="#808080"
android:startColor="#FFFFFF" />
</shape>

你的 xml

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="25dip"
android:orientation="horizontal"
android:background="@drawable/bg_selector"
android:weightSum="2" >

<Button
android:background="@drawable/bg_selector"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textColor="#FFFFFF"
android:gravity="center"
android:textStyle="bold"
android:layout_marginRight="4dip"
android:layout_marginLeft="10dip"
android:text="@string/b_save" />

<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textColor="#FFFFFF"
android:gravity="center"
android:layout_marginLeft="4dip"
android:layout_marginRight="10dip"
android:background="@drawable/bg_selector"
android:text="@string/b_cancel"
android:textStyle="bold"/>
</LinearLayout>

关于android如何在按钮之间留出一些空间并在每个按钮上方制作白线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14789048/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com