AlarmClock.ExtraDays Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Bundle extra: Weekdays for repeating alarm.
[Android.Runtime.Register("EXTRA_DAYS")]
public const string ExtraDays;
[<Android.Runtime.Register("EXTRA_DAYS")>]
val mutable ExtraDays : string
Field Value
- Attributes
Remarks
Bundle extra: Weekdays for repeating alarm.
Used by #ACTION_SET_ALARM
.
The value is an ArrayList<Integer>
. Each item can be:
<ul> <li> java.util.Calendar#SUNDAY
, <li> java.util.Calendar#MONDAY
, <li> java.util.Calendar#TUESDAY
, <li> java.util.Calendar#WEDNESDAY
, <li> java.util.Calendar#THURSDAY
, <li> java.util.Calendar#FRIDAY
, <li> java.util.Calendar#SATURDAY
</ul>
Java documentation for android.provider.AlarmClock.EXTRA_DAYS
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.