Tag: xamarin.forms

在Xamarin.Forms中将默认的黑暗Android主题更改为白色?

Xamarin.Forms确实生成一个灰色的Android应用程序。 我想在Android中有一个浅/白色的主题 (如在iOS目标中)。 一个简单的切换方式存在吗?

Xamarin.Forms是否可以使用Xamldevise器或智能感知?

Xamarin 3.0引入了Xamarin.Forms ,这是一个强大的UI抽象,允许开发人员轻松创build可在Android,iOS和Windows Phone上共享的用户界面。 它看起来非常强大,但我面临一些困难,创buildUI为Xamarin.Forms带有超过40个控件。 如果没有智能感知或简约devise师,在官方文档中search所有属性或浏览c#代码是相当不利的。 默认的Xaml teamplate是这样的,显然不需要任何帮助就可以添加新的控件。 <?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="App1.Class1"> <Label Text="{Binding MainText}" VerticalOptions="Center" HorizontalOptions="Center" /> </ContentPage> 那么有没有机会在Xaml内部具有智能感知或者使用Xamldevise师?

构build操作“EmbeddedResource”不受一个或多个项目目标的支持

我是Xamarin平台的新手,并且面临着错误 Build action 'EmbeddedResource' is not supported by one or more of the project's targets. 在emulator 8.1 for windows phonedebugging,我的项目是一个Xamarin.form(portable) 。

Xamarin.Forms – 创build一个新页面时,InitializeComponent不存在

我正在使用Visual Studio来试用Xamarin.Forms。 我正在尝试遵循指南: http : //developer.xamarin.com/guides/cross-platform/xamarin-forms/xaml-for-xamarin-forms/getting_started_with_xaml/ 简而言之,我使用PCL创build一个Xamarin.Forms解决scheme,然后尝试将一个Forms XAML Page添加到PCL项目中。 被创build的代码隐藏看起来像这样: public partial class Page1 : ContentPage { public Page1() { InitializeComponent(); } } 这里的问题是InitializeComponent(); 是红色的。 当我尝试构build时,我得到通知The name 'InitializeComponent' does not exist in the current context 我一直在寻找解决scheme,即使其他人也有同样的麻烦,他们的解决scheme不会为我工作。 以下是我尝试使用的一个build议: http : //blog.falafel.com/xamarin-error-initializecomponent-does-not-exist-in-the-current-context/ 请让我知道,如果你有这个问题的解决scheme。 谢谢! 更新: 我的PCL(这也是我想要添加我的XAML页面的地方)包含: App.cs: public class App : Application { public App() { // […]

Xamarinformsandroid应用程序不获取DeviceTokenparsingSDK

我正在开发android和iOS的Xamarin表单应用程序。 我正在使用Parse SDK实现相同的PushNotifications。 我添加了Parse.Android dll引用.iroid项目中的.Droid项目和Parse.iOS dll。 我的问题是有时在Android上,我无法检索到DeviceToken。 在parsing安装类中没有DeviceToken和pushtype的条目。 它的值是'未定义'。 下面是我的代码和清单。 public async void RegisterForPushNotifications () { try { if (Utility.isNetworkConnected ()) { await ParsePush.SubscribeAsync (""); var installation = ParseInstallation.CurrentInstallation; // I'm saving the DeviceToken in App.regId for future uses App.regId = System.String.IsNullOrWhiteSpace (installation.DeviceToken) ? "" : installation.DeviceToken; ParsePush.ParsePushNotificationReceived += PushNotificationReceived; } } catch (ParseException e) […]

从Xamarin Forms PCL中删除ios,windows8和wp8 – nuget 3.0select进入错误?

我正在做一个Xamarin Forms项目。 我想定位Android和Windows 10 UWP。 当我尝试通过从PCL目标中删除“Windows 8”,“Windows Phone Silverlight 8”,“Windows Phone 8.1”,“Xamarin.ios”和“Xamarin.ios(classic)”来清理PCL时,下面的讨厌… 我真的只是试图删除WP8,因为我不关心它的目标。 该项目的目标不能改变。 选定的目标需要项目select进入NuGet 3.0支持,但Visual Studio不能自动为您做这个。 请卸载所有的Nu​​Get软件包,然后重试。 你如何得到一个项目来selectNuGet 3.0? 还有别的我应该尝试? 环境:Xamarinforms,VS2015 谢谢….

如何切换Xamarin表单中的页面?

如何在Xamarin Forms中的页面之间切换? 我的主页是一个ContentPage,我不想切换到一个标签页面。 我已经能够通过find应该触发新页面的控件的父母来伪造它,直到findContentPage,然后用带有新页面的控件replace内容。 但是,这似乎很sl </s>。 谢谢

何时使用Xamarin.Forms vs Xamarin Native?

我需要在Xamarin.Forms和Xamarin原生应用程序之间进行select。 我想与Xamarin.Forms作为UI代码将被共享。 那么Xamarin.Forms与Native相比有什么缺点?

Xamarin.Form的LayoutOptions有什么区别,特别是Fill和Expand?

在Xamarin.Forms中,每个View都有两个属性HorizontalOptions和VerticalOptions 。 两者都是LayoutOptionstypes,可以具有以下值之一: LayoutOptions.Start LayoutOptions.Center LayoutOptions.End LayoutOptions.Fill LayoutOptions.StartAndExpand LayoutOptions.CenterAndExpand LayoutOptions.EndAndExpand LayoutOptions.FillAndExpand 显然,它控制父视图上的视图alignment。 但是,每个选项的行为究竟如何呢? Fill和后缀Expand什么区别?

如何login到Xamarin.Forms的Facebook

我想做一个Xamarin.Forms项目,瞄准iOs,Android和Windows Phone。 我的应用需要使用Facebook对用户进行身份validation。 我应该为每个平台独立实现login,还是使用手动stream程? https://developers.facebook.com/docs/facebook-login/manually-build-a-login-flow/v2.0 我更喜欢有一个loginstream的实现,并在所有平台上使用它。 我怎样才能得到一个facebookloginstream的实现?