-1

I was creating a one of my activities separately from my main project because it was a big thing.

After making it work, I merged everything in my main app. Most of it was copy-paste and just change the paths and such.

Now, my problem is my time picker has a completely different look.

It should look like this [picker how it should be][1]

but it looks like this [how it's looking right now][2]

Like I said, I didn't change anything. Does anyone have any ideas?

Thanks


1 Answers1

0
<TimePicker
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:timePickerMode="spinner">
</TimePicker>

Set timePickerMode to be Spinner

Raj
  • 2,997
  • 2
  • 12
  • 30