我經歷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測試」
嗨,你能找到解決辦法嗎? – Tushar