Android datepicker dialog - android

How can I disable the day on a datepicker dialog for android? Meant only the month and year is visible. Currently using android 2.2

You can use a custom DatePicker in that case, for exemple refer to this google project that present an alternative time and date picker for android

Sorry but prior to I think 4.0 you cant do this, you only have the option for a full date or full time picker.
You could create your own, but this might take a while, have a look at what others have done.. Heres an example of a full date picker, but you could just take the day out of this as it is xml.
Custom date picker with months and years
Also I think it is a possible duplicate as Custom date picker with months and years

You can do custom date picker using ready to use framework for this.
The Dateslider is a framework for a range of date picker widgets based on the principle of sliding bars. This results in a very intuitive and enhanced user experience.
Check it out it may produce something like to meet your needs.
Thanks

Related

input date picker on android shows wrong picker on WebView

I've got an HTML5 INPUT (type="datetime-local") in a WebView, but when I select it, it shows a date-time field that looks like this:
But the same identical element in Chrome looks like this:
This is under Android 7.1, with Chrome v55 installed, so Chrome is being used the WebView component. So, both should show the same thing, right?
I need the latter picker to show up in the WebView, it is much more user friendly (to scroll you can just flick up and down rather than having to repeatedly press the plus or minute buttons.
How do I accomplish this?
Update: I have tried creating this natively using a DatePickerDialog and it does the same thing! I'm targeting minSdkVersion=22, targetSdkVersion=25 (although I have also tried minSdkVersion=25). How do I force Android to display the correct picker for my app?
Update 2: I downloaded a sample app using the native DatePickerDialog and it displays the dialog ok. I don't like the idea of having to try to find the difference between the two projects which is causing the behavioral difference as it could be anything and take an excessive amount of time to find.
Update 3: Using the answer provided by Oleg, I was able to reproduce the second picker using android:Theme.Holo.Light.DarkActionBar. But if I use android:Theme.DeviceDefault.Light I can get a calendar view for input type="date". But the corresponding time picker in the Default theme (the round clock) does not show up for input type="time" and ``input type="datetime-local"` doesn't use the calendar view either.
As discussed in comments, you are likely missing the proper theme. Given that you have access to working app, please apply the same theme, it should solve it

How to open a new datepicker displaying an old date in Android tablet

I am working on a C# Android tablet project. If I open a new datePicker, it usually displays the current date. I would like to display a specific date (say, 5/9/2010) in the pop up datePicker. How can I do that? I would appreciate if anyone can help out.
I develop android in Java. In my case I use
DatePicker.init(year, month, day, DatePicker.OnDateChangedListener)
method to initialize the DatePicker before it shows on the screen. I didn't develop android in C#. But I think there must be a similar method to initialize it. Or you can get more information on the API website.

Modify CalendarView?

I want to show a calendarview on my android application.
Default android calendar is not very nice.
I would like to improve the visual appearance and functionality of this calendar.
To do this, does anyone have a recommendation?
If you find extending CalendarView to be as much of a headache as I did, you can always create your own CustomCalendarView.
In your own View you can steal whatever functionality you like from the native CalendarView:
http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android-apps/2.1_r2/com/android/calendar/CalendarView.java
https://code.google.com/p/ancal/source/checkout
That project obtains ability of creating appointments, tasks and notes on calendar.

Customising the DatePicker Dialog Android

I am using a DatePicker in a Dialog box to allow the user to chose a date. But I just want them to chose a month and a day. Is there any way I can make the year not show up?
I don't see any way to do so in the Javadocs. You could create your own using NumberPicker (which unfortunately is not in an externally available API, but the sourcecode is readily available). See http://www.quietlycoding.com/?p=5 for more information.

How to do Android's DigitalClock show the date?

When the mobile screen locks, its shown a time and date widget.
I'm trying to how it using DigitalClock, but I can show only time.
Any idea how to show date either (with this or other built-in widget)?
--update
I found some pages talking about alternatives to Android Calendar, but I don't find Android Calendar widget nowhere..
There is no built-in widget to show the date, sorry.

Categories

Resources