###起動が遅い
Xamarin.FormsでPageにボタンとラベルを配置したものを作成しました。
USBでAndroid端末を繋ぎ実行したところ起動までに60秒~90秒かかりました。
###質問内容
- 起動に60秒~90秒要するのは正常でしょうか。
- 起動を高速にする方法はあるのでしょうか。
- 開発者の方々はデバッグの度に数分間待っているのでしょうか。
###XAML内容
xaml
1<?xml version="1.0" encoding="utf-8" ?> 2<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" 3 xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" 4 xmlns:local="clr-namespace:AndroidApp" 5 xmlns:viewmodel="clr-namespace:AndroidApp.ViewModel" 6 x:Class="AndroidApp.MainPage"> 7 8 <ContentPage.BindingContext> 9 <viewmodel:MainPageVM/> 10 </ContentPage.BindingContext> 11 12 <StackLayout> 13 <!-- Place new controls here --> 14 <Label Text="{Binding Label1}" 15 HorizontalOptions="Center" 16 VerticalOptions="CenterAndExpand" /> 17 18 <Button Command="{Binding ButtonCommand}"/> 19 </StackLayout> 20 21</ContentPage> 22

回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/04 01:46
2020/02/04 01:51