当前位置: 首页 > article >正文

自定义 按钮间,按钮边框滑动。

先是布局界面

<RelativeLayout
                android:id="@+id/tab_button_rel"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/toolbar"
                >

                <androidx.appcompat.widget.AppCompatButton
                    android:id="@+id/btnOrderList"
                    android:text="订单列表"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="10dp"
                    android:layout_marginTop="2dp"
                    android:background="@drawable/tab_button_background"
                    />

                <androidx.appcompat.widget.AppCompatButton
                    android:id="@+id/btnChargingOrderList"
                    android:text="充电宝列表"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_centerInParent="true"
                    android:layout_marginTop="2dp"
                    android:background="@drawable/tab_button_background"
                    />

                <androidx.appcompat.widget.AppCompatButton
                    android:id="@+id/btnExceptionOrderList"
                    android:text="异常列表"
                    android:layout_width="wrap_content"
                    android:layout_height="50dp"
                    android:layout_alignParentRight="true"
                    android:layout_marginEnd="10dp"
                    android:layout_marginTop="2dp"
                    android:background="@drawable/tab_button_background"
                    />

                <View
                    android:id="@+id/border"
                    android:layout_width="1dp"
                    android:layout_height="50dp"
                    android:background="@drawable/border_button_background" />
            </RelativeLayout>

然后是几个样式文件。

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_selected="true">
        <shape android:shape="rectangle">
            <solid android:color="@android:color/white" />
            <stroke
                android:width="1dp"
                android:color="@android:color/holo_red_dark" />
        </shape>
    </item>
    <item>
        <shape android:shape="rectangle">
            <solid android:color="@android:color/white" />
            <stroke
                android:width="1dp"
                android:color="@android:color/holo_blue_dark" />
        </shape>
    </item>
</selector>

另一个border_button_background

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

    <!-- Transparent middle part -->
    <item android:drawable="@android:color/transparent" />

    <!-- Colored border -->
    <item
        android:left="1dp"
        android:right="1dp"
        android:top="1dp"
        android:bottom="1dp">
        <shape android:shape="rectangle">
            <solid android:color="@android:color/holo_blue_dark" />
        </shape>
    </item>

</layer-list>

使用代码

class YourFragment : Fragment() {

    private var selectedButton: Button? = null

    override fun onCreateView(
        inflater: LayoutInflater, container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View? {
        return inflater.inflate(R.layout.fragment_your_layout, container, false)
    }

    override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)

        val buttons = listOf(btnOrderList, btnChargingOrderList, btnExceptionOrderList)
        val border = view.findViewById<View>(R.id.border)

        buttons.forEachIndexed { index, button ->
            button.setOnClickListener {
                selectButton(button)
                animateBorder(button, border)
            }
        }

        // Set initial width of the border to match the first button
        val firstButton = buttons.first()
        border.layoutParams.width = firstButton.width
        border.requestLayout()
    }

    private fun selectButton(button: Button) {
        selectedButton?.isSelected = false
        button.isSelected = true
        selectedButton = button
    }

    private fun animateBorder(selectedButton: Button, border: View) {
        val targetX = selectedButton.x
        val targetWidth = selectedButton.width

        border.animate()
            .x(targetX)
            .scaleX(targetWidth / border.width.toFloat())
            .setDuration(300)
            .start()
    }
}


http://www.kler.cn/a/159401.html

相关文章:

  • 安装paddle
  • 借助Excel实现Word表格快速排序
  • Go语言的零值可用性:优势与限制
  • flink实战 -- flink SQL 实现列转行
  • androidstudio入门到放弃配置
  • 「AI Infra 软件开源不是一个选项,而是必然」丨云边端架构和 AI Infra专场回顾@RTE2024
  • 第一篇:MongoDB的安装、启动、关闭、链接shell
  • 蓝桥杯每日一题2023.12.5
  • C盘爆满,python pip无法安装应用
  • Adobe Acrobat DC 将PDF转曲步骤
  • 【Docker实操】创建一个Node服务
  • 大宽服务器:一场关于未来、关于梦想的科技革命
  • 【Flink基础】-- 延迟数据的处理
  • 大数据Doris(三十一):Doris简单查询
  • ArkUI组件--Text组件
  • Spingboot 之spring-boot-starter-parent与spring-boot-dependencies区分
  • 网页产品经理常用的ChatGPT通用提示词模板
  • 配置自动化部署Jenkins和Gitea
  • 信息化,数字化,智能化是3种不同概念吗?与机械化,自动化矛盾吗?
  • 淘宝用户体验VOC标签体系
  • 【前端】-【electron】
  • 2023母婴行业矩阵营销洞察报告
  • ssh-keygen(centos)
  • 【Git】ssh: connect to host github.com port 22: Connection refused
  • 【目标检测】YOLO格式数据集txt标注转换为COCO格式JSON
  • vue.config.js文件重写打包工具配置信息