我刚刚使用Prism Template Pack创建了一个示例Android-XAMRIN项目。我的基本项目是点网标准2.0,并且我正在使用Prism.Unity.Forms 7.2.0.1367。启动应用程序时,它显示空白页。我将附加项目页面的所有图像。AndroidProjProp.pngApp_xamlApp_xaml_csApp_Proj_PropMainActivity_csMainPageViewModelNuget_InstalledViewModelBase
您可以按照Brian Lagunas的tutorial创建您的应用。
我按照他的教程创建了一个示例项目,并在我的设备上运行,结果显示为文本Welcome to Xamarin Forms and Prism!
。
MainPage.xaml
的代码:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="BlankApp2.Views.MainPage"
Title="{Binding Title}">
<StackLayout HorizontalOptions="CenterAndExpand" VerticalOptions="CenterAndExpand">
<Label Text="Welcome to Xamarin Forms and Prism!" />
</StackLayout>
</ContentPage>