我是靠谱客的博主 想人陪钢铁侠,最近开发中收集的这篇文章主要介绍初次体验monodroid,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

昨天,晚上终于等到了monodroid的官方下载权!终于可以告别java和eclipse,重新回归C#和vs的怀抱了!

安装的Visual Studio 2010 MonoDroid包括五个步骤:

  1. Java SDK的安装
  2. 安装Android SDK
  3. 配置你的模拟器
  4. 安装Visual Studio 2010中MonoDroid插件
  5. (可选) 配置Visual Studio中的MonoDroid为插件

 具体安装可以去官方网站上看看。

 

 新建一个monodroid的工程:

写一段测试代码:

using System;


using Android.App;

using Android.Content;

using Android.Runtime;

using Android.Views;

using Android.Widget;

using Android.OS;


namespace MonoDroidApplication1

{

    [Activity(Label = "My Activity", MainLauncher = true)]

    public class Activity1 : Activity

    {

        int count = 1;


        public Activity1(IntPtr handle)

            : base(handle)

        {

        }


        protected override void OnCreate(Bundle bundle)

        {

            base.OnCreate(bundle);


            // Set our view from the "main" layout resource

            SetContentView(Resource.layout.main);


            // Get our button from the layout resource,

            // and attach an event to it

            Button button = FindViewById<Button>(Resource.id.myButton);


            button.Click += delegate { button.Text = string.Format("{0} clicks!", count++); };

        }

    }

} 

 运行,运行需要在android的手机上安装monodroid框架

 

 运行helloworld,在android的上的效果

 

 

效果还不错吧! 

转载于:https://www.cnblogs.com/szp11/archive/2010/09/28/1837327.html

最后

以上就是想人陪钢铁侠为你收集整理的初次体验monodroid的全部内容,希望文章能够帮你解决初次体验monodroid所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部