What User Interface Design or Layout is this - android

I am currently developing a reservation system application that would require the user to input date and time.
So that would mean that I would have a date picker and a time picker in mu layout file.
Upon doing so, when a user clicks the button to set Date and time of reservation the app will then start an Intent and opens another activity but as far as I see it, It would look awful if I do such so I was wonder how to do this kind of UI so that it would not be as hassle as to start and activity for a result.

You have a number of options to implement this behavior.
The official date picker dialog and time picker dialog.
Given that the use of dialogs is discouraged, try using the widgets inline with CalendarView and DatePicker if you can.
A backported version of the widgets CalendarView and DatePicker.

Related

How to give validation to calendar

I'm creating a appointment booking app in android studio.
So while selecting time in time picker i want the time between 14:00pm and 16:00pm to be disabled ,similarly - the timing at night must be disabled.
&
While selecting Date , I want the previous dates to be disabled.
is it possible?
You would have to use a custom TimePickerDialog in this case, same goes to the date as well if you would need that functionality too.
See this post - Custom TimePickerDialog or use this library - MaterialDateTimePicker with material design.

Make a Datepicker button look similar to the one in Google calendar app

My app is supposed to have a Datepicker. To invoke the date picker fragment a button is pressed and then the floating date picker appears.
My problem is that the button does not look similar to the rest of the UI components being used to accept data. Is there any way I can make the button look and function like the one in Google calendar app?? The date picker button dynamically displays the date chosen too and would like to have that functionality too.
Picks for reference:
My current button:
The type of button I want to achieve:
I looked around a bit and was able to change the look by putting the following code in the xml code:
style="#android:style/Widget.DeviceDefault.Light.Spinner"
Here is how to add text to the button.

Android DatePicker like Android Calendar app

I am trying to implement an activity where I want the user to put a date information.
I would like it to look like the Android Calendar App. Their button looks like a spinner, but with the selected date (picture 1). When the button is clicked, it opens the Date Picker dialog (picture 2).
http://pineapple.cc/datepicker1.png
http://pineapple.cc/datepicker2.png
Should I use a redesigned button, spinner, textview ?
Thank you a lot for you help
Does the supplied widget not do it for you? Ooops misunderstood question. Disregard.
Edit:
I'm looking at the EditEventView activity in the Calendar app, and they're using a button that launches the DatePicker widget. The setDate() method there does the formatting.

Android: Date Picker using xml layout

i have some problems in using the date picker from xml layout.
in my app when the user clicks a text view a custom dialog box opens. In the layout of the custom dialog box i am showing a date picker which i have place in my xml file. When it appears in the app i want a particular date to be viewed, for example as 01 Jan 1950. Every time it opens it is showing the present date only.
In my dialog box i have a set and cancel buttons. The Cancel button cancels the dialog box where as when i click the Set button i want the current date to be stored to a String.
In another activity of my app in a custom dialog box i want to show a date picker only with the year columns, i dont need the date and month columns. How to get it, please help me friends
Without seeing any code, I just can propose you to use the method init from the DatePicker class. Check this link but basically, in your activity do something like:
myDatePicker = (DatePicker)findViewByID(...);
myDatePicker.init(myYear,myMonth,myDay, myOnDateChangedListener);

Date and time picker in one view

I wanted to know whether we can implement both date and time picker in one view...
In our iPhone app you can pick both date and time through one view. But in Android we have date picker and time picker used separately. Is there any method by which I can get values of both date and time from one view?
There is no built in widget that implements both a date and time picker. However, you can create your own custom view for that, perhaps combining the existing DatePicker and TimePicker.

Categories

Resources