Android 应用程序名在哪里显示?安卓/单安卓

Android 应用程序名在哪里显示?安卓/单安卓,android,xamarin.android,Android,Xamarin.android,我正在经历,我对这部分有点困惑 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 som

我正在经历,我对这部分有点困惑

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>  

如我所见,Test Test标签是您在管理应用程序或应用程序柜中使用的标签。应用程序名称是可选的

实现此包的整个android.app.Application的类的可选名称


Eclipse就是这么说的。

当用户安装你的应用程序时,软件包安装程序会显示。

嗨,你能找到解决方案吗?
[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); 
        }
    }