gpt4 book ai didi

android - 以编程方式更改 TimePicker 中的选择 View (小时/分钟)

转载 作者:行者123 更新时间:2023-12-04 17:55:03 27 4
gpt4 key购买 nike

我想知道如何在 TimePicker 中更改选择 View 。例如:我在分钟 View 中单击某个按钮,然后 View 更改为选择小时。

.我在布局中使用带有 TimePicker 的自定义 Timepicker 类:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
style="@style/AppTheme"
android:background="@color/colorPrimaryDark">

<TimePicker
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/tp_timepicker"
android:layout_weight="1" />
</LinearLayout>

最佳答案

由于请求关注时间选择器的 TextView 不起作用,我开始执行对它们的点击 - 对我有用!

TimePicker tp = parentView.findViewById(R.id.tp_timepicker)
View timePickerPart = tp.findViewById(Resources.getSystem().getIdentifier("hours", "id", "android"));
timePickerPart.performClick();

也适用于 分钟 而不是 小时。也可能适用于 amPm

关于android - 以编程方式更改 TimePicker 中的选择 View (小时/分钟),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41003872/

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