如何禁用滚动日历视图- Android开发人员

mrfwxfqh  于 2022-12-28  发布在  Android
关注(0)|答案(3)|浏览(337)

我目前正在刷新我的android开发技能,遇到了CalendarView组件。我想禁用日历的滚动,而是启用箭头浏览日历。

**我想知道的是:**如何禁用日历视图的滚动功能?为什么Android Studio在设计器模式下显示箭头浏览版本,但编译并运行滚动版本的日历?

我正在运行一个Android VM,一个API 22的“Galaxy Nexus”。我还在下面发布了“build.gradle”。

Android显示的内容/我想要的内容:

Android Studio编译和运行的内容:

∮ ∮ ∮ ∮ ∮一卡一卡一

以下是一些代码:

//活动_主要.java:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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"
    tools:context=".MainActivity">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        app:layout_constraintBottom_toBottomOf="parent"
        tools:layout_editor_absoluteX="0dp">

        <CalendarView
            android:id="@+id/calendarView4"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:isScrollContainer="false" />
    </LinearLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

//生成分级

plugins {
    id 'com.android.application'
}

android {
    compileSdkVersion 30
    buildToolsVersion "30.0.2"

    defaultConfig {
        applicationId "com.example.kalender003_emptyactivity"
        minSdkVersion 16
        targetSdkVersion 30
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

dependencies {

    implementation 'androidx.appcompat:appcompat:1.3.1'
    implementation 'com.google.android.material:material:1.4.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.0'
    testImplementation 'junit:junit:4.+'
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}
pdtvr36n

pdtvr36n1#

使用MaterialComponents主题,很可能会解决此问题。
在您的值/主题文件中,将父文件替换为以下内容:

parent="Theme.MaterialComponents.DayNight.DarkActionBar"

如果你不想要操作栏,

parent="Theme.MaterialComponents.DayNight.NoActionBar"

如果您只想显示浅色日历视图,而不管设备的主题使用,

parent="Theme.MaterialComponents.Light.NoActionBar"
vsikbqxv

vsikbqxv2#

多亏了Vaibhav Goyal我找到了解决方案。
我使用的API级别太低(API 22,Android 5.1)。将其更改为API 23(Android 6.0)解决了我的问题。现在它显示的日历视图带有箭头导航,而不是滚动版本!

qf9go6mv

qf9go6mv3#

yourCalenenderId.addOnItemTouchListener(object : RecyclerView.SimpleOnItemTouchListener() {
        override fun onInterceptTouchEvent(rv: RecyclerView, e: MotionEvent): Boolean {
            return if (e.action == MotionEvent.ACTION_MOVE) {
                true
            } else {
                super.onInterceptTouchEvent(rv, e)
            }
        }
    })

相关问题