Hi telerik team,
I wonder how it is possible to decrease the size of the app package, I build with telerik ui. When I create the package for android, the size is >80MB.I tried different linker settings, which in many scenarios resulted in that the app was no longer working.
The biggest additional package is the "skiasharp" package, which I think I dont need. Currently I am using calendar , autocomplete, zip, sidedrawer. Do you have as list of the assemblies / settings which are needed for these comomponents only?
Best regards,
Frank
Hi,
How do you detect a tap on a gauge?
Can't find an event to hook into or a gesturerecognizer support?
Thanks.
On the click of menu icon my arraylists gets populated and I call adapter.notifydatasetchanged()
Arraylist count keeps on varying. When I launch my application arraylist count is 1, and on the tap of button arraylist is changed and now its count is 4, but on the call of notifydatasetchanged app crashes giving error (IndexOutOf BoundException : Index1, seize 1).
Kindly suggest a solution on priority.
I have to have this in my iOS renderer to keep the app from crashing when Prism tries to destroy the page with the calendar.
// Hack: To keep app from crashing
public override Telerik.XamarinForms.Input.CalendarCellStyle GetStyleForCell(Telerik.XamarinForms.Input.CalendarCell xfCell)
{
try
{
return base.GetStyleForCell(xfCell);
}
catch
{
return null;
}
}
The full path of the file it points to is
Topspin.Android - C:\TS\TS\TS.Android\obj\Debug\__library_projects__\Telerik.Xamarin.Android.Input\library_project_imports\res\values\attrs.xml 2`
I cannot build my project while this is happening.
Hello,
If the IsItemsReorderEnabled of the RadListView isTrue, and the list items are grouped,
I will get an exception "System.ArgumentOutOfRangeException: Index must be within the bounds of the List.",
is it a bug of RadListView, and therefore, I found item reordering is not able to be moved to different group, the moved item will be reverted to its original position,
could you help Admins?
I have a RadListView and I would like to switch view between ListViewLinearLayout and ListViewGridLayout .
On my code I create the component with this code:
productsList = new RadListView
{
VerticalOptions = LayoutOptions.FillAndExpand,
HorizontalOptions = LayoutOptions.FillAndExpand,
SelectionGesture = SelectionGesture.Tap,
SelectionMode = SelectionMode.Single,
};
then I switch between ListViewLinearLayout and ListViewGridLayout
productsList.LayoutDefinition = new ListViewLinearLayout{Orientation = Orientation.Vertical, ItemLength=110 };
productsList.LayoutDefinition = new ListViewGridLayout { SpanCount = 3, ItemLength = 150 };
When I switch layoutdefinitio the result is an horrible graphic mess.
Hi,
When making an appointment
like
- StartDate = new DateTime(DateTime.Today.Year,DateTime.Today.Month, DateTime.Today.Day, 20,0,0),
- EndDate = new DateTime(DateTime.Today.Year,DateTime.Today.Month, DateTime.Today.Day, 22,00,0),
or
- StartDate = DateTime.Today.AddHours(20),
- EndDate = DateTime.Today.AddHours(22),
it spills over into tomorrow that now gets an appointment going from 6:00 - 22:00.
If I change the end-time to 21:59 it works as expected.
If I specify the datetime kind to either UTC/Local/etc, it still fails.
If I change the code below from 22 to 23, it still fails
Control.DayView.DayEventsViewStyle.StartTime = 3600 * 6 * 1000;
Control.DayView.DayEventsViewStyle.EndTime = 3600 * 22 * 1000;