TimePicker in ListView pops up time selection interface again after changing value












2















I have a view containing a model with a list of pauses. Each of those have a start and end.



In my page, i am using a ListView where I bind these pauses to.
So in each ViewCell there are two TimePickers, one for the start time and one for the end time.



If I change the start value, everything is fine, however if I change the end value something strange happens: After entering the value, the input popup closes. Then it opens again showing the value of end time and after that another popup appears, this time holding the value of the start time.



After playing around with various layouts, adding or removing NotifyPropertyChanged events, I still have no clue why this is happening or why.
It kind of feels like a xamarin bug and it looks like the Focus and Unfocus events of all time pickers in the Cell are being fired.



Edit: Looks like it really is a xamarin bug: https://github.com/xamarin/Xamarin.Forms/issues/4305



PauseModel.cs (Shared Project):



public class PauseModel : INotifyPropertyChanged
{
public PauseModel()
{

}

public PauseModel(DateTimeOffset start, DateTimeOffset end)
{
PauseStart = start;
PauseEnd = end;
}

public DateTimeOffset PauseStart
{
get { return pauseStart; }
set { pauseStart = value; }
}
private DateTimeOffset pauseStart;

public DateTimeOffset PauseEnd
{
get { return pauseEnd; }
set { pauseEnd = value; }
}
private DateTimeOffset pauseEnd;

public TimeSpan StartTime
{
get { return PauseStart.TimeOfDay; }
set { PauseStart = PauseStart.Date + value; }
}

public TimeSpan EndTime
{
get { return PauseEnd.TimeOfDay; }
set { PauseEnd = PauseEnd.Date + value; }
}

public event PropertyChangedEventHandler PropertyChanged;

public void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}


Note, that there isn't any real PropertyChanged implementation yet, I removed it in order to make sure the PropertyChanged event wouldn't be causing the misbehaviour. StartTime and EndTime are "adapter properties", which allow binding the values to a TimePicker element. I also tried using dedicated TimeSpan properties instead of the "adapters", this didn't change the misbehaving of the pickers either.



PauseScreenModel.cs (Shared Project):



public class PauseScreenModel
{
public PauseScreenModel()
{

}

public PauseScreenModel(bool prefill = false)
{
if (prefill == true)
{
DateTimeOffset todayDate = new DateTimeOffset(DateTimeOffset.Now.Year, DateTimeOffset.Now.Month, DateTimeOffset.Now.Day, 0, 0, 0, DateTimeOffset.Now.Offset);
Pauses = new ObservableCollection<PauseModel>()
{
new PauseModel(todayDate + new TimeSpan(11,0,0), todayDate + new TimeSpan(11,10,0)),
new PauseModel(todayDate + new TimeSpan(13,15,0), todayDate + new TimeSpan(13,45,0)),
new PauseModel(todayDate + new TimeSpan(16,40,0), todayDate + new TimeSpan(16,50,0))
};
}
}

public ObservableCollection<PauseModel> Pauses
{
get;set;
}
}


PauseViewPage.xml (Shared Project):



<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:TimePickerListTest"
x:Class="TimePickerListTest.PauseViewPage">

<ListView ItemsSource="{Binding Pauses}" HasUnevenRows="True">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell Height="80">
<Grid Margin="0" >
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="2*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Label Text="Start Time" Grid.Row="0" Grid.Column="0" />
<Label Text="End Time" Grid.Row="0" Grid.Column="1" />

<TimePicker Time="{Binding StartTime}" Grid.Row="1" Grid.Column="0" />
<TimePicker Time="{Binding EndTime}" Grid.Row="1" Grid.Column="1" />
</Grid>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</ContentPage>


The Page is invoked from App.xaml.cs:



public App()
{
InitializeComponent();
MainPage = new PauseViewPage(new Model.PauseScreenModel(true));
}


So any help pointing me into the right direction would be appreciated.



Edit: The issue occurs on a LG K8 running Android 8.1 using Xamarin Forms 3.4.0.1008975 and also on an emulator running Android 6.0, however on a Samsung Galaxy Note 4 with Android 6.0.1 the pickers behave as expected.










share|improve this question

























  • Can you provide more detail ?Such as the version of xamarin.forms and test device?I use your code and it works fine.

    – Lucas Zhang - MSFT
    Nov 21 '18 at 6:42











  • Added the device and Xamarin Forms version to the main question. Which Phone were you using?

    – Markus Michel
    Nov 21 '18 at 8:11











  • I use the Nexus runing Android 8.1 and my iPhone.I suggest that you can create a a new project and add two timepicker on the page without listview. Because I don't think it has anything to do with your code.

    – Lucas Zhang - MSFT
    Nov 21 '18 at 8:47











  • In my original app where I stumbled over the issue, i have two additional time pickers besides the ones in the list view. These work absolutely fine. As I added to my initial question, some devices have that erratic behaviour while others don't. However there is already a ticket in xamarin's bugtracker for exactly this.

    – Markus Michel
    Nov 21 '18 at 9:32
















2















I have a view containing a model with a list of pauses. Each of those have a start and end.



In my page, i am using a ListView where I bind these pauses to.
So in each ViewCell there are two TimePickers, one for the start time and one for the end time.



If I change the start value, everything is fine, however if I change the end value something strange happens: After entering the value, the input popup closes. Then it opens again showing the value of end time and after that another popup appears, this time holding the value of the start time.



After playing around with various layouts, adding or removing NotifyPropertyChanged events, I still have no clue why this is happening or why.
It kind of feels like a xamarin bug and it looks like the Focus and Unfocus events of all time pickers in the Cell are being fired.



Edit: Looks like it really is a xamarin bug: https://github.com/xamarin/Xamarin.Forms/issues/4305



PauseModel.cs (Shared Project):



public class PauseModel : INotifyPropertyChanged
{
public PauseModel()
{

}

public PauseModel(DateTimeOffset start, DateTimeOffset end)
{
PauseStart = start;
PauseEnd = end;
}

public DateTimeOffset PauseStart
{
get { return pauseStart; }
set { pauseStart = value; }
}
private DateTimeOffset pauseStart;

public DateTimeOffset PauseEnd
{
get { return pauseEnd; }
set { pauseEnd = value; }
}
private DateTimeOffset pauseEnd;

public TimeSpan StartTime
{
get { return PauseStart.TimeOfDay; }
set { PauseStart = PauseStart.Date + value; }
}

public TimeSpan EndTime
{
get { return PauseEnd.TimeOfDay; }
set { PauseEnd = PauseEnd.Date + value; }
}

public event PropertyChangedEventHandler PropertyChanged;

public void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}


Note, that there isn't any real PropertyChanged implementation yet, I removed it in order to make sure the PropertyChanged event wouldn't be causing the misbehaviour. StartTime and EndTime are "adapter properties", which allow binding the values to a TimePicker element. I also tried using dedicated TimeSpan properties instead of the "adapters", this didn't change the misbehaving of the pickers either.



PauseScreenModel.cs (Shared Project):



public class PauseScreenModel
{
public PauseScreenModel()
{

}

public PauseScreenModel(bool prefill = false)
{
if (prefill == true)
{
DateTimeOffset todayDate = new DateTimeOffset(DateTimeOffset.Now.Year, DateTimeOffset.Now.Month, DateTimeOffset.Now.Day, 0, 0, 0, DateTimeOffset.Now.Offset);
Pauses = new ObservableCollection<PauseModel>()
{
new PauseModel(todayDate + new TimeSpan(11,0,0), todayDate + new TimeSpan(11,10,0)),
new PauseModel(todayDate + new TimeSpan(13,15,0), todayDate + new TimeSpan(13,45,0)),
new PauseModel(todayDate + new TimeSpan(16,40,0), todayDate + new TimeSpan(16,50,0))
};
}
}

public ObservableCollection<PauseModel> Pauses
{
get;set;
}
}


PauseViewPage.xml (Shared Project):



<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:TimePickerListTest"
x:Class="TimePickerListTest.PauseViewPage">

<ListView ItemsSource="{Binding Pauses}" HasUnevenRows="True">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell Height="80">
<Grid Margin="0" >
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="2*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Label Text="Start Time" Grid.Row="0" Grid.Column="0" />
<Label Text="End Time" Grid.Row="0" Grid.Column="1" />

<TimePicker Time="{Binding StartTime}" Grid.Row="1" Grid.Column="0" />
<TimePicker Time="{Binding EndTime}" Grid.Row="1" Grid.Column="1" />
</Grid>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</ContentPage>


The Page is invoked from App.xaml.cs:



public App()
{
InitializeComponent();
MainPage = new PauseViewPage(new Model.PauseScreenModel(true));
}


So any help pointing me into the right direction would be appreciated.



Edit: The issue occurs on a LG K8 running Android 8.1 using Xamarin Forms 3.4.0.1008975 and also on an emulator running Android 6.0, however on a Samsung Galaxy Note 4 with Android 6.0.1 the pickers behave as expected.










share|improve this question

























  • Can you provide more detail ?Such as the version of xamarin.forms and test device?I use your code and it works fine.

    – Lucas Zhang - MSFT
    Nov 21 '18 at 6:42











  • Added the device and Xamarin Forms version to the main question. Which Phone were you using?

    – Markus Michel
    Nov 21 '18 at 8:11











  • I use the Nexus runing Android 8.1 and my iPhone.I suggest that you can create a a new project and add two timepicker on the page without listview. Because I don't think it has anything to do with your code.

    – Lucas Zhang - MSFT
    Nov 21 '18 at 8:47











  • In my original app where I stumbled over the issue, i have two additional time pickers besides the ones in the list view. These work absolutely fine. As I added to my initial question, some devices have that erratic behaviour while others don't. However there is already a ticket in xamarin's bugtracker for exactly this.

    – Markus Michel
    Nov 21 '18 at 9:32














2












2








2








I have a view containing a model with a list of pauses. Each of those have a start and end.



In my page, i am using a ListView where I bind these pauses to.
So in each ViewCell there are two TimePickers, one for the start time and one for the end time.



If I change the start value, everything is fine, however if I change the end value something strange happens: After entering the value, the input popup closes. Then it opens again showing the value of end time and after that another popup appears, this time holding the value of the start time.



After playing around with various layouts, adding or removing NotifyPropertyChanged events, I still have no clue why this is happening or why.
It kind of feels like a xamarin bug and it looks like the Focus and Unfocus events of all time pickers in the Cell are being fired.



Edit: Looks like it really is a xamarin bug: https://github.com/xamarin/Xamarin.Forms/issues/4305



PauseModel.cs (Shared Project):



public class PauseModel : INotifyPropertyChanged
{
public PauseModel()
{

}

public PauseModel(DateTimeOffset start, DateTimeOffset end)
{
PauseStart = start;
PauseEnd = end;
}

public DateTimeOffset PauseStart
{
get { return pauseStart; }
set { pauseStart = value; }
}
private DateTimeOffset pauseStart;

public DateTimeOffset PauseEnd
{
get { return pauseEnd; }
set { pauseEnd = value; }
}
private DateTimeOffset pauseEnd;

public TimeSpan StartTime
{
get { return PauseStart.TimeOfDay; }
set { PauseStart = PauseStart.Date + value; }
}

public TimeSpan EndTime
{
get { return PauseEnd.TimeOfDay; }
set { PauseEnd = PauseEnd.Date + value; }
}

public event PropertyChangedEventHandler PropertyChanged;

public void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}


Note, that there isn't any real PropertyChanged implementation yet, I removed it in order to make sure the PropertyChanged event wouldn't be causing the misbehaviour. StartTime and EndTime are "adapter properties", which allow binding the values to a TimePicker element. I also tried using dedicated TimeSpan properties instead of the "adapters", this didn't change the misbehaving of the pickers either.



PauseScreenModel.cs (Shared Project):



public class PauseScreenModel
{
public PauseScreenModel()
{

}

public PauseScreenModel(bool prefill = false)
{
if (prefill == true)
{
DateTimeOffset todayDate = new DateTimeOffset(DateTimeOffset.Now.Year, DateTimeOffset.Now.Month, DateTimeOffset.Now.Day, 0, 0, 0, DateTimeOffset.Now.Offset);
Pauses = new ObservableCollection<PauseModel>()
{
new PauseModel(todayDate + new TimeSpan(11,0,0), todayDate + new TimeSpan(11,10,0)),
new PauseModel(todayDate + new TimeSpan(13,15,0), todayDate + new TimeSpan(13,45,0)),
new PauseModel(todayDate + new TimeSpan(16,40,0), todayDate + new TimeSpan(16,50,0))
};
}
}

public ObservableCollection<PauseModel> Pauses
{
get;set;
}
}


PauseViewPage.xml (Shared Project):



<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:TimePickerListTest"
x:Class="TimePickerListTest.PauseViewPage">

<ListView ItemsSource="{Binding Pauses}" HasUnevenRows="True">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell Height="80">
<Grid Margin="0" >
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="2*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Label Text="Start Time" Grid.Row="0" Grid.Column="0" />
<Label Text="End Time" Grid.Row="0" Grid.Column="1" />

<TimePicker Time="{Binding StartTime}" Grid.Row="1" Grid.Column="0" />
<TimePicker Time="{Binding EndTime}" Grid.Row="1" Grid.Column="1" />
</Grid>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</ContentPage>


The Page is invoked from App.xaml.cs:



public App()
{
InitializeComponent();
MainPage = new PauseViewPage(new Model.PauseScreenModel(true));
}


So any help pointing me into the right direction would be appreciated.



Edit: The issue occurs on a LG K8 running Android 8.1 using Xamarin Forms 3.4.0.1008975 and also on an emulator running Android 6.0, however on a Samsung Galaxy Note 4 with Android 6.0.1 the pickers behave as expected.










share|improve this question
















I have a view containing a model with a list of pauses. Each of those have a start and end.



In my page, i am using a ListView where I bind these pauses to.
So in each ViewCell there are two TimePickers, one for the start time and one for the end time.



If I change the start value, everything is fine, however if I change the end value something strange happens: After entering the value, the input popup closes. Then it opens again showing the value of end time and after that another popup appears, this time holding the value of the start time.



After playing around with various layouts, adding or removing NotifyPropertyChanged events, I still have no clue why this is happening or why.
It kind of feels like a xamarin bug and it looks like the Focus and Unfocus events of all time pickers in the Cell are being fired.



Edit: Looks like it really is a xamarin bug: https://github.com/xamarin/Xamarin.Forms/issues/4305



PauseModel.cs (Shared Project):



public class PauseModel : INotifyPropertyChanged
{
public PauseModel()
{

}

public PauseModel(DateTimeOffset start, DateTimeOffset end)
{
PauseStart = start;
PauseEnd = end;
}

public DateTimeOffset PauseStart
{
get { return pauseStart; }
set { pauseStart = value; }
}
private DateTimeOffset pauseStart;

public DateTimeOffset PauseEnd
{
get { return pauseEnd; }
set { pauseEnd = value; }
}
private DateTimeOffset pauseEnd;

public TimeSpan StartTime
{
get { return PauseStart.TimeOfDay; }
set { PauseStart = PauseStart.Date + value; }
}

public TimeSpan EndTime
{
get { return PauseEnd.TimeOfDay; }
set { PauseEnd = PauseEnd.Date + value; }
}

public event PropertyChangedEventHandler PropertyChanged;

public void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}


Note, that there isn't any real PropertyChanged implementation yet, I removed it in order to make sure the PropertyChanged event wouldn't be causing the misbehaviour. StartTime and EndTime are "adapter properties", which allow binding the values to a TimePicker element. I also tried using dedicated TimeSpan properties instead of the "adapters", this didn't change the misbehaving of the pickers either.



PauseScreenModel.cs (Shared Project):



public class PauseScreenModel
{
public PauseScreenModel()
{

}

public PauseScreenModel(bool prefill = false)
{
if (prefill == true)
{
DateTimeOffset todayDate = new DateTimeOffset(DateTimeOffset.Now.Year, DateTimeOffset.Now.Month, DateTimeOffset.Now.Day, 0, 0, 0, DateTimeOffset.Now.Offset);
Pauses = new ObservableCollection<PauseModel>()
{
new PauseModel(todayDate + new TimeSpan(11,0,0), todayDate + new TimeSpan(11,10,0)),
new PauseModel(todayDate + new TimeSpan(13,15,0), todayDate + new TimeSpan(13,45,0)),
new PauseModel(todayDate + new TimeSpan(16,40,0), todayDate + new TimeSpan(16,50,0))
};
}
}

public ObservableCollection<PauseModel> Pauses
{
get;set;
}
}


PauseViewPage.xml (Shared Project):



<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:TimePickerListTest"
x:Class="TimePickerListTest.PauseViewPage">

<ListView ItemsSource="{Binding Pauses}" HasUnevenRows="True">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell Height="80">
<Grid Margin="0" >
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="2*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Label Text="Start Time" Grid.Row="0" Grid.Column="0" />
<Label Text="End Time" Grid.Row="0" Grid.Column="1" />

<TimePicker Time="{Binding StartTime}" Grid.Row="1" Grid.Column="0" />
<TimePicker Time="{Binding EndTime}" Grid.Row="1" Grid.Column="1" />
</Grid>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</ContentPage>


The Page is invoked from App.xaml.cs:



public App()
{
InitializeComponent();
MainPage = new PauseViewPage(new Model.PauseScreenModel(true));
}


So any help pointing me into the right direction would be appreciated.



Edit: The issue occurs on a LG K8 running Android 8.1 using Xamarin Forms 3.4.0.1008975 and also on an emulator running Android 6.0, however on a Samsung Galaxy Note 4 with Android 6.0.1 the pickers behave as expected.







c# xamarin mvvm xamarin.forms






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 21 '18 at 8:36







Markus Michel

















asked Nov 20 '18 at 11:06









Markus MichelMarkus Michel

1,457314




1,457314













  • Can you provide more detail ?Such as the version of xamarin.forms and test device?I use your code and it works fine.

    – Lucas Zhang - MSFT
    Nov 21 '18 at 6:42











  • Added the device and Xamarin Forms version to the main question. Which Phone were you using?

    – Markus Michel
    Nov 21 '18 at 8:11











  • I use the Nexus runing Android 8.1 and my iPhone.I suggest that you can create a a new project and add two timepicker on the page without listview. Because I don't think it has anything to do with your code.

    – Lucas Zhang - MSFT
    Nov 21 '18 at 8:47











  • In my original app where I stumbled over the issue, i have two additional time pickers besides the ones in the list view. These work absolutely fine. As I added to my initial question, some devices have that erratic behaviour while others don't. However there is already a ticket in xamarin's bugtracker for exactly this.

    – Markus Michel
    Nov 21 '18 at 9:32



















  • Can you provide more detail ?Such as the version of xamarin.forms and test device?I use your code and it works fine.

    – Lucas Zhang - MSFT
    Nov 21 '18 at 6:42











  • Added the device and Xamarin Forms version to the main question. Which Phone were you using?

    – Markus Michel
    Nov 21 '18 at 8:11











  • I use the Nexus runing Android 8.1 and my iPhone.I suggest that you can create a a new project and add two timepicker on the page without listview. Because I don't think it has anything to do with your code.

    – Lucas Zhang - MSFT
    Nov 21 '18 at 8:47











  • In my original app where I stumbled over the issue, i have two additional time pickers besides the ones in the list view. These work absolutely fine. As I added to my initial question, some devices have that erratic behaviour while others don't. However there is already a ticket in xamarin's bugtracker for exactly this.

    – Markus Michel
    Nov 21 '18 at 9:32

















Can you provide more detail ?Such as the version of xamarin.forms and test device?I use your code and it works fine.

– Lucas Zhang - MSFT
Nov 21 '18 at 6:42





Can you provide more detail ?Such as the version of xamarin.forms and test device?I use your code and it works fine.

– Lucas Zhang - MSFT
Nov 21 '18 at 6:42













Added the device and Xamarin Forms version to the main question. Which Phone were you using?

– Markus Michel
Nov 21 '18 at 8:11





Added the device and Xamarin Forms version to the main question. Which Phone were you using?

– Markus Michel
Nov 21 '18 at 8:11













I use the Nexus runing Android 8.1 and my iPhone.I suggest that you can create a a new project and add two timepicker on the page without listview. Because I don't think it has anything to do with your code.

– Lucas Zhang - MSFT
Nov 21 '18 at 8:47





I use the Nexus runing Android 8.1 and my iPhone.I suggest that you can create a a new project and add two timepicker on the page without listview. Because I don't think it has anything to do with your code.

– Lucas Zhang - MSFT
Nov 21 '18 at 8:47













In my original app where I stumbled over the issue, i have two additional time pickers besides the ones in the list view. These work absolutely fine. As I added to my initial question, some devices have that erratic behaviour while others don't. However there is already a ticket in xamarin's bugtracker for exactly this.

– Markus Michel
Nov 21 '18 at 9:32





In my original app where I stumbled over the issue, i have two additional time pickers besides the ones in the list view. These work absolutely fine. As I added to my initial question, some devices have that erratic behaviour while others don't. However there is already a ticket in xamarin's bugtracker for exactly this.

– Markus Michel
Nov 21 '18 at 9:32












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53391651%2ftimepicker-in-listview-pops-up-time-selection-interface-again-after-changing-val%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53391651%2ftimepicker-in-listview-pops-up-time-selection-interface-again-after-changing-val%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

How to fix TextFormField cause rebuild widget in Flutter