gpt4 book ai didi

ScrollView 中的 Android 5.0 Datepicker 不工作(不滚动月份)

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:59:20 25 4
gpt4 key购买 nike

我在 fragment 中实现了新的日期选择器。这被包裹在 ScrollView 中。尝试使用日期选择器时,我必须先单击并按住屏幕上的某处,然后才能滚动日期选择器日历,比如可能。

有办法解决这个问题吗?

我正在使用这个时间选择器: enter image description here

我是这样加载它的:

 <ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/scrollView2"
android:layout_row="11"
android:fillViewport="true"
android:background="#162229"
android:layout_column="2"
android:paddingBottom="20dp">
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:background="#162229"

android:orientation="vertical" >

<DatePicker
android:id="@+id/datePicker1"
android:layout_width="wrap_content"
android:background="#162229"
android:calendarTextColor="#fff"
android:layout_height="wrap_content"

android:calendarViewShown="false" > <!-- style="@style/date_picker_style" -->
</DatePicker>
</LinearLayout>
</ScrollView>

最佳答案

创建一个扩展 DatePicker 的类并覆盖以下方法:

@Override
public boolean onInterceptTouchEvent(MotionEvent ev)
{
if (ev.getActionMasked() == MotionEvent.ACTION_DOWN)
{
ViewParent p = getParent();
if (p != null)
p.requestDisallowInterceptTouchEvent(true);
}

return false;
}

它会很好地工作。来源:here

关于 ScrollView 中的 Android 5.0 Datepicker 不工作(不滚动月份),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29386497/

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