2011-07-27 46 views
1

我經歷this tutorial和我有點迷茫的這個部分應用程序名稱showup在哪裏?安卓/ MonoAndroid

Inside the Resources/Values/ folder, open Strings.xml. This is where you should save all default text strings for your user interface. The default template for this file starts with two strings, hello and app_name. Revise hello to something else. Perhaps "Hello, Android! I am a string resource!" The entire file should now look like this: 
view plainprint? 

    <?xml version="1.0" encoding="utf-8"?> 
    <resources> 
     <string name="Hello">Hello, Android! I am a string resource!</string> 
     <string name="ApplicationName">Hello, Android</string> 
    </resources> 

我會想到它會出現在應用程序菜單(在那裏你去選擇你想要的應用程序)

但是,似乎並非如此。我不知道如果代碼標籤覆蓋它還是什麼

[Activity(Label = "Test Test", MainLauncher = true, Icon = "@drawable/icon")] 
    public class Activity1 : Activity 
    { 

     protected override void OnCreate(Bundle bundle) 
     { 
      base.OnCreate(bundle); 
      SetContentView(Resource.Layout.Main); 
     } 
    } 

當我看到「Test測試」

+0

嗨,你能找到解決辦法嗎? – Tushar

回答

0

當用戶安裝您的應用程序時,由包安裝程序顯示。

0

標籤是您在管理應用程序或應用櫃一個。應用程序名稱是可選的。

「一類的實現此包的總體android.app.Application一個可選的名字」就是Eclipse說什麼。

相關問題