3

在我的 Android 应用程序中,我需要上下滚动放置在 ScrollView 和 LinearLayout 中的 CalendarView 的月份。

这是我的 XML 结构:

-ScrollView
--LinearLayout
---CalendarView

我应该怎么做才能让日历上下滚动(因此选择不同的月份)?

当前的 ScrollView 行为似乎禁用了日历的滚动。

任何帮助,将不胜感激。

4

3 回答 3

0

您是否尝试过在没有 ScrollView 的情况下使用 CalendarView?我可以简单地滚动几个月 - ParentView(在我的情况下是RelativeLayout) - 其他视图 - CalendarView

于 2014-11-17T11:23:26.037 回答
0

首先创建一个自定义日历视图

滚动日历.java

import android.util.AttributeSet;
import android.view.MotionEvent;
import android.widget.CalendarView;
import android.content.Context;
import android.view.ViewParent;
import android.view.MotionEvent;

public class scrollCalendar extends CalendarView {

public scrollCalendar(Context context)
{
    super(context);
}

public scrollCalendar(Context context, AttributeSet attrs)
{
    super(context,attrs);
}

public scrollCalendar(Context context,AttributeSet attrs, int defStyle)
{
    super(context,attrs,defStyle);
}
@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
    if (ev.getActionMasked() == MotionEvent.ACTION_DOWN) {
        ViewParent p= this.getParent();
        if (p != null)
            p.requestDisallowInterceptTouchEvent(true);
    }
    return false;
}
}

在 Activity.xml 文件中

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="50dp">

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scrollbarThumbHorizontal="@null"
    android:scrollbarThumbVertical="@null"
    android:isScrollContainer="true">

 <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:orientation="vertical">

  <com.example.gateway.scrollCalendar
      android:id="@+id/calendarDate"
      android:layout_width="wrap_content"
      android:layout_height="250dp"
      android:layout_gravity="center"
      android:background="@drawable/edit_bg"
      android:visibility="gone">
  </com.example.gateway.scrollCalendar>

 </LinearLayout>

</ScrollView>

</RelativeLayout>
于 2016-06-24T07:43:23.837 回答
0

这可能对未来的用户有所帮助。使用下面给定的自定义滚动视图类。在您的 xml 中,只需替换ScrollViewnameofpackage.VerticalScrollView. nameofpackage表示您放置自定义滚动视图类的完整包名称。(即,如果它是 com.example 而不是 nameofpackage.VerticalScrollView = com.example.VerticalScrollView)。

public class VerticalScrollView extends ScrollView{

    public VerticalScrollView(Context context) {
        super(context);
    }

    public VerticalScrollView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public VerticalScrollView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @Override
    public boolean onInterceptTouchEvent(MotionEvent ev) {
        final int action = ev.getAction();
        switch (action)
        {
            case MotionEvent.ACTION_DOWN:
                Log.i("VerticalScrollview", "onInterceptTouchEvent: DOWN super false" );
                super.onTouchEvent(ev);
                break;

            case MotionEvent.ACTION_MOVE:
                return false; // redirect MotionEvents to ourself

            case MotionEvent.ACTION_CANCEL:
                Log.i("VerticalScrollview", "onInterceptTouchEvent: CANCEL super false" );
                super.onTouchEvent(ev);
                break;

            case MotionEvent.ACTION_UP:
                Log.i("VerticalScrollview", "onInterceptTouchEvent: UP super false" );
                return false;

            default: Log.i("VerticalScrollview", "onInterceptTouchEvent: " + action ); break;
        }

        return false;
    }

    @Override
    public boolean onTouchEvent(MotionEvent ev) {
        super.onTouchEvent(ev);
        Log.i("VerticalScrollview", "onTouchEvent. action: " + ev.getAction() );
        return true;
    }
}
于 2016-07-13T15:41:23.113 回答