2017-07-25 59 views
0

我有這個無商標的書面該公司的唯一名稱的項目,如下插入標誌在我的項目xamarin形式的ios的頂部,Android的

enter image description here

現在我想把圖像在我的項目上,公司LOGO留在完美的設計師,你可以在圖片中看到下面

enter image description here

我使用xamarin形式和開發Android應用和iOS,怎麼能我做 這在我的項目?有沒有人有任何例子?

編輯

<?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="projeto.Views.home" 
    x:Name="Name" 
    Title="Name" Icon=""> 
+0

我建議遵循一些關於使用Xamarin.Forms創建基本應用程序的示例,因爲您可能會錯過對UI組件的一些基本理解 - [Xamarin.Forms入門](https://developer.xamarin.com/guides/xamarin -forms/getting-started /) 我們可以粘貼一堆代碼,但你不明白爲什麼,還有幾種方法來做這些事情。 – ethane

+0

我已經準備好了我的項目,我只是沒有找到正確的方法,你可以把命令放在那裏,我可以取消檢查 –

+0

那麼,你有什麼嘗試?給我們一些你的項目的背景。您是使用xaml還是代碼隱藏來構建您的UI?您是使用Xamarin.Forms還是Xamarin.Android和Xamarin.iOS項目? – ethane

回答

0

這裏是你的頁面可能看起來像一個粗略的佈局:

<ContentPage 
xmlns="http://xamarin.com/schemas/2014/forms" 
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" 
x:Class="projeto.Views.home" 
x:Name="Name" 
Title="Name" Icon=""> 

    <!--Content page may only have one child element--> 
    <StackLayout HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" Orientation="Vertical"> 
     <Image Source="CompanyLogo.png" AspectRatio="AspectFit"/> 
     <StackLayout> 
      <!--Other content---> 
     </StackLayout> 
    </StackLayout> 
</ContentPage> 

注意,這個非常基本的方法只是其中的一個。您需要熟悉xaml以及您可以用來實現特定功能的不同組件。

+0

好吧,那也是對的。但不是我認爲它的方式。我想讓他卡住,所以你告訴我,如果我滾下標誌會褪色 –

相關問題