在我的Android应用程序中,我需要向上和向下滚动放置在ScrollView和LinearLayout内的CalendarView的月份。
这是我的XML结构:
-ScrollView
--LinearLayout
---CalendarView
为了让日历向上和向下滚动(因此选择不同的月份),我该怎么做?
当前的ScrollView行为似乎禁用了日历的滚动。
任何帮助都将不胜感激。
答案 0 :(得分:0)
您是否尝试在没有ScrollView的情况下使用CalendarView?我可以简单地滚动几个月 - ParentView(在我的情况下为RelativeLayout) - 其他观点 - CalendarView
答案 1 :(得分:0)
首先创建自定义日历视图
scrollCalendar.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>
答案 2 :(得分:0)
这可能对将来的用户有所帮助。使用下面给出的自定义滚动视图类。在您的xml中,只需将ScrollView
替换为nameofpackage.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;
}
}