- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
Android 在 API 11 中引入了一个 CalendarView。我已经在我的应用程序中实现了它,它似乎工作正常,因为它显示了一个看起来非常正常的整月日历,而且我可以选择一个日期。它会触发适当的事件,我可以毫无问题地在我的代码中读取选定的日期。
但是我不能把它提前到当月!文档说
A user can select a date by taping on it and can scroll and fling the calendar to a desired date.
(“taping”出现在文档中;我认为这是“tapping”的拼写错误)
我试过轻扫、滑动、滚动,但没有任何反应。我需要做些什么才能启用此功能吗?
我的 XML 看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical" >
<!-- This linear layout is because the scrollview can have only 1 direct child -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<!-- Relative layout for Workorder -->
<RelativeLayout
android:id="@+id/rellayWorkorder"
android:background="#383838"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:layout_marginBottom="2dp">
<TextView
android:id="@+id/workorderlabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_margin="2dp"
android:gravity="left"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Work Order:"/>
<TextView
android:id="@+id/workorderContent"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_margin="2dp"
android:gravity="right"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="---workorder---"/>
</RelativeLayout>
<!-- Relative layout for Required Time
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"></FrameLayout> -->
<RelativeLayout
android:id="@+id/rellayRequiredTime"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:layout_marginBottom="2dp">
<TextView
android:id="@+id/requiredTimelabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_margin="2dp"
android:gravity="left"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Required Time:"/>
<TextView
android:id="@+id/requiredTimeContent"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_margin="2dp"
android:gravity="right"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="--- 00 minutes ---"/>
</RelativeLayout>
<!-- Relative layout for Time remaining -->
<RelativeLayout
android:id="@+id/rellayTimeRemaining"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:layout_marginBottom="2dp">
<TextView
android:id="@+id/timeremaininglabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_margin="2dp"
android:gravity="left"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Time Remaining:"/>
<TextView
android:id="@+id/tviewtimeremainingContent"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_margin="2dp"
android:gravity="right"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="--- 0:00:00---"/>
</RelativeLayout>
<!-- Linear layout for Record Start / Record End buttons -->
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp" >
<Button
android:id="@+id/debulkrecordStart"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
android:layout_marginRight="4dp"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceMedium"
android:onClick="OnSetRecordStartTimeClick"
android:text="Record Start"/>
<Button
android:id="@+id/debulkrecordEnd"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
android:layout_marginRight="4dp"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceMedium"
android:onClick="OnSetRecordEndTimeClick"
android:text="Record End"/>
</LinearLayout>
<!-- Relative layout for Vacuum level -->
<RelativeLayout
android:id="@+id/rellayvacuumlevel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="2dp">
<TextView
android:id="@+id/vaclabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_margin="2dp"
android:gravity="left"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="Vacuum Level (inches Hg):"/>
<EditText
android:id="@+id/vacleveledit"
android:layout_width="120dp"
android:layout_height="wrap_content"
android:layout_alignParentRight = "true"
android:layout_margin="2dp"
android:gravity="left"
android:textAppearance="?android:attr/textAppearanceSmall"
android:inputType="text|textCapCharacters"
android:text="vac level"
android:layout_marginRight="2dp"
android:layout_marginTop="2dp"
android:layout_marginBottom="2dp"/>
</RelativeLayout>
<!-- Relative layout for Vac Gauge Equipment # -->
<RelativeLayout
android:id="@+id/rlayvacuumGauge"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="2dp">
<TextView
android:id="@+id/vacgaugelabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_margin="2dp"
android:gravity="left"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="Vac Gauge Equipment #:"/>
<EditText
android:id="@+id/vacgaugeedit"
android:layout_width="120dp"
android:layout_height="wrap_content"
android:layout_alignParentRight = "true"
android:layout_margin="2dp"
android:gravity="left"
android:textAppearance="?android:attr/textAppearanceSmall"
android:inputType="text|textCapCharacters"
android:text="equip. #"/>
</RelativeLayout>
<!-- Relative layout for Calibration Due date -->
<RelativeLayout
android:id="@+id/rlaycalibdue"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="2dp">
<TextView
android:id="@+id/calibduelabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_margin="2dp"
android:gravity="left"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="Calibration Due Date:"/>
<EditText
android:id="@+id/calibdueedit"
android:layout_width="120dp"
android:layout_height="wrap_content"
android:layout_alignParentRight = "true"
android:layout_margin="2dp"
android:gravity="left"
android:textAppearance="?android:attr/textAppearanceSmall"
android:inputType="text|textCapCharacters"
android:text="mm/dd/yyyy"/>
</RelativeLayout>
<CalendarView
android:id="@+id/debulkcalendar"
android:layout_width="match_parent"
android:layout_height="240dp"
android:minDate="01/01/2016"
android:maxDate="11/30/2016"
/>
<!-- this linear layout is for the debulk override and done buttons -->
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp" >
<Button
android:id="@+id/debulkOverride"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
android:layout_marginRight="4dp"
android:onClick="OnResetClick"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Override"/>
<Button
android:id="@+id/debulkDone"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
android:layout_marginRight="2dp"
android:onClick="onDoneBtnClick"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Done"/>
</LinearLayout>
</LinearLayout>
</ScrollView>
编辑:
抱歉,XML 太长了 - 在我最初的帖子中,我只有 CalendarView,但有人请求了整个 XML。
同时为了排除它可能是我在我的三星 S5 (Android 5.0) 上测试过的设备所独有的可能性,并得到了相同的结果。
最佳答案
根据我的假设,它不会仅仅因为可滚动的父级而滚动或快速移动,您可以在没有 ScrollView 的情况下检查它吗?
因为我测试过
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<CalendarView
android:id="@+id/debulkcalendar"
android:layout_width="match_parent"
android:layout_height="240dp"
android:minDate="01/01/2016"
android:maxDate="11/30/2016"/>
</LinearLayout>
及其完美的工作
你可以使用NestedScrollView
NestedScrollView is just like ScrollView, but it supports acting as both a nested scrolling parent and child on both new and old versions of Android. Nested scrolling is enabled by default.
关于android - 无法将 Android CalendarView 更改为另一个月份(Samsung S Duos - Android 4.2.2),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37735266/
我刚刚按照教程创建了一个新的小部件。我创建了一个包含所有文件的 zip,并将其重命名为 HelloWorld.wgt 而不是 HelloWorld.zip。我通过数据线将它发送到我的三星 star/c
Samsung Galaxy Apps 商店不接受我提交的应用。 有一个类别部分,其中有两个用于选择类别的字段,我已将两者都设置为主要类别,但是当我提交它时,它指出我仍然需要为我的应用程序选择一个类别
我正在寻找在我的 Android 应用程序中使用 Samsung Comic Fun Filter 的可能性。有可能这样做吗?或者这是三星应用程序独有的? 最佳答案 是的。有可能的。三星为此提供了一个
三星 Galaxy S6 中有一个 S 健康应用程序,可以测量心率、SpO2、压力和其他值。看来我可以为此购买额外的应用程序。这个S Health是三星独有的吗?当我在线搜索 Google Fit A
关于我的主题问题我有一些关于 PNACL 的基本问题 是否所有三星 SmartTV 都支持 PNACL? 2.如果我使用 pepper 31,我的应用程序可以在旧电视上运行吗? 现在主要的问题 我已经
经过一番研究,我得出结论,这个应用程序的 ID 为 org.volt.apps , 但通过 tizen.application.launch 启动它或 tizen.application.launch
我已经实现了一个 android 应用程序来在网络摄像头之间切换。我使用此代码 Android ICS and MJPEG using AsyncTask .它工作得很好。但是现在的问题。在对 Sam
说出于某种原因,也许是某种安全限制,您不能“不”运行与三星云服务器等通信的三星“S Health”应用程序。但是您确实想访问三星的历史记录/日志“Gear S3 watch ”,这有可能吗?或者三星是
除其他外,我想以编程方式获取三星设备上保修位的状态。很像 Odin 模式下显示的信息。 我知道该位不适合轮询,但我想知道是否有任何方法可以在无需创建容器或在证明期间获取它。 很像 GP 上的 KNOX
如何获取使用 HTML、CSS 和 JavaScript 编写的 Samsung SmartTV 应用程序的当前时间? 问题出在 Javascript Date目的。当我打电话时new Date()在
我们一直在试验三星智能电视应用程序。 最近我们构建了一个原型(prototype)应用来试验某项功能,但我们正在努力让它在真正的电视上运行。 即使它在三星模拟器上运行完美,但在真正的电视上几乎没有运气
已开发应用程序并部署到电视上。现在我想要单宽行为(部分覆盖底层输入、 channel 上的屏幕),但我无法这样做。这是我所做的: a) 放body, html {background-color:tr
我才刚刚开始三星智能电视的开发,到目前为止,我的第一步是一个巨大的失败。 我正在运行 Linux,因为我已经为 Android 开发安装和配置了 Eclipse,所以我没有成功安装和运行 Smart
我已经下载了最新的 sdk,解压缩到桌面并尝试运行我的第一个 helloworld 应用程序,但在 eclipse 上没有任何反应。没有任何建筑物,目前没有任何进程,没有任何错误等。当我点击“运行三星
我将 Android 应用程序分发到 Google Play 商店。 我从我的用户那里收到“此商品与您的设备 samsung advance 不兼容”。 手机是三星Advance。 显现:
我真的已经尽力了,但我就是找不到解决这个问题的方法。我为 Android 设备编写了一个 Soundboard,其中每个声音及其按钮图像都是动态加载的。这是我的代码中的关键段落: private vo
我正在为三星智能电视创建一个应用程序。在我的应用程序中,我需要获取智能电视的 IP 地址。有谁知道怎么弄吗? 最佳答案 你需要使用 SEF NETWORK 来做到这一点,确保你在 index.html
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎是题外话,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或include a min
我安装了 Hyperterminal 并使用了我的 samsung galaxy s3 并使用 usb 数据线将它连接到我的笔记本电脑。我安装了驱动程序,计算机将 s3 检测为调制解调器。它在 sup
我已经为 Android 编写了一个应用程序。主要部分是它通过蓝牙进行通信。我有四个设备: 1. 三星 Galaxy S2 2. 三星 Galaxy Gio 3.Netsurfer touch(一款非
我是一名优秀的程序员,十分优秀!