Compose TimePicker

ops/2024/12/14 6:36:57/
预览

在这里插入图片描述

Composable
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material.Button
import androidx.compose.material.ButtonDefaults
import androidx.compose.material3.BasicAlertDialog
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.Text
import androidx.compose.material3.TimePicker
import androidx.compose.material3.TimePickerLayoutType
import androidx.compose.material3.rememberTimePickerState
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.TextUnit
import androidx.compose.ui.unit.TextUnitType
import androidx.compose.ui.unit.dp
import java.util.Calendar@OptIn(ExperimentalMaterial3Api::class)
@Composable
@Preview
fun TimePickerExample() {val currentTime = Calendar.getInstance()val state = rememberTimePickerState(initialHour = currentTime.get(Calendar.HOUR_OF_DAY),initialMinute = currentTime.get(Calendar.MINUTE),is24Hour = true,)val hour = state.hourval minute = state.minuteval selectedValue ="$hour:$minute"Text(selectedValue,modifier = Modifier,fontSize = TextUnit(18f, TextUnitType.Sp))BasicAlertDialog(modifier = Modifier, onDismissRequest = {},content = {Column(modifier = Modifier.background(color = Color.White, shape = RoundedCornerShape(8.dp)).padding(start = 10.dp, end = 10.dp, top = 5.dp)) {Row(verticalAlignment = Alignment.CenterVertically, modifier = Modifier.padding(bottom = 5.dp, start = 20.dp, end = 20.dp)) {Text("选择时间",modifier = Modifier.weight(1f),fontSize = TextUnit(18f, TextUnitType.Sp))Button(onClick = {state.hour},shape = RoundedCornerShape(90.dp),colors = ButtonDefaults.buttonColors(backgroundColor = Color(0xff6750A4))) {Text("确认", color = Color.White)}}TimePicker(state, modifier = Modifier.fillMaxWidth(), layoutType = TimePickerLayoutType.Vertical)}},)
}

http://www.ppmy.cn/ops/141743.html

相关文章

深入源码层面:在 Spring Boot 和 Spring MVC 项目中实现全面请求记录与异常处理的拦截器与监听器分析

在现代 Web 应用开发中,了解请求处理和异常管理的底层实现是提升应用稳定性与可维护性的关键。本文将从源码层面深入分析 Spring Boot 和 Spring MVC 中的拦截器(Interceptor)与监听器(Listener),探讨如何通…

Java 环境配置 + IntelliJ IDEA 使用指南

文章目录 一、Java 程序的运行必须经过3 个步骤:编写、编译、运行(1)Java 和 JavaScript 的区别(2)JDK、JRE、JVM 的关系(3)是否需要 Maven? 二、软件下载2.1、JDK下载与安装 —— 是…

ASP.NET|日常开发中连接Sqlite数据库详解

ASP.NET|日常开发中连接Sqlite数据库详解 前言一、安装和引用相关库1.1 安装 SQLite 驱动1.2 引用命名空间 二、配置连接字符串2.1 连接字符串的基本格式 三、建立数据库连接3.1 创建连接对象并打开连接 四、执行数据库操作4.1 创建表(以简单的用户表为例…

用线程池,注意避坑

前言 线程池是 Java 中处理多线程的强大工具,但它不仅仅是“直接用就完事”的工具。 很多小伙伴在用线程池时,因为配置不当或忽略细节,踩过许多坑。 今天跟大家一起聊聊线程池中容易踩的 10 个坑,以及如何避免这些坑&#xff0…

【C++初阶】第8课—标准模板库STL(string_2)

文章目录 1. string类对象遍历操作1.1 标准库中的成员函数begin( )和end( )1.2 标准库中的成员函数rbegin( )和rend( )1.3 C11引入的4个标准库中的成员函数 2. string类对象的访问2.1 operator[ ]运算符重载访问字符串字符2.2 公有成员函数at访问字符2.3 公有成员函数back()和f…

基于 Python 的机器学习模型部署到 Flask Web 应用:从训练到部署的完整指南

目录 引言 技术栈 步骤一:数据预处理 步骤二:训练机器学习模型 步骤三:创建 Flask Web 应用 步骤四:测试 Web 应用 步骤五:模型的保存与加载 保存模型 加载模型并在 Flask 中使用 步骤六:Web 应用…

UE5 C+、C++、C# 构造方法区别示例

我们对比一下UE C、C 、C#的构造方法&#xff1a; 1. UE4 C例子&#xff1a; // 声明和构造合并在一起static ConstructorHelpers::FObjectFinder<UTexture2D> CrosshairTexObj(TEXT("/Game/Path"));// 使用加载的资源UTexture2D* Texture CrosshairTexObj.…

yarn 安装问题

Couldn’t find package “regenerator-runtime” on the “npm” registry. Error: Couldn’t find package “watch-size” on the “npm” regist 标题Error: Couldn’t find package “babel-helper-vue-jsx-merge-props” on the “npm” registry. Error: Couldn’t f…