c#:写一个简单的Andriod程序

以下是使用C#(通过Xamarin.Android框架)编写的简单Android程序示例,包含一个按钮和文本显示功能:

1. 创建项目结构

HelloAndroid/
├── MainActivity.cs       # 主逻辑
├── Resources/
│   └── layout/
│       └── Main.axml    # 界面布局
└── Properties/
    └── AndroidManifest.xml

2. 界面布局文件 (Resources/layout/Main.axml)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="20dp">
    
    <TextView
        android:id="@+id/helloText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="点击下方按钮" />
        
    <Button
        android:id="@+id/actionButton"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="点我!"
        android:layout_marginTop="30dp" />
</LinearLayout>

3. 主逻辑文件 (MainActivity.cs)

using Android.App;
using Android.OS;
using Android.Widget;

namespace HelloAndroid
{
    [Activity(Label = "我的第一个应用", MainLauncher = true)]
    public class MainActivity : Activity
    {
        protected override void OnCreate(Bundle savedInstanceState)
        {
            base.OnCreate(savedInstanceState);
            
            // 加载界面布局
            SetContentView(Resource.Layout.Main);
            
            // 获取控件引用
            Button actionButton = FindViewById<Button>(Resource.Id.actionButton);
            TextView helloText = FindViewById<TextView>(Resource.Id.helloText);
            
            // 按钮点击事件
            actionButton.Click += (sender, e) => 
            {
                helloText.Text = "你好,Android!";
            };
        }
    }
}

4. 功能说明

  1. 界面元素

    • 顶部文本控件 (TextView) 初始显示"点击下方按钮"
    • 底部按钮 (Button) 显示"点我!"
  2. 交互逻辑

    • 当用户点击按钮时,文本内容会更新为"你好,Android!"

5. 运行要求

  1. 安装 Visual Studio (2019或更高版本)
  2. 工作负载选择:
    • .NET 桌面开发
    • 使用 .NET 的移动开发
  3. 连接Android设备或使用模拟器

注意:首次运行需配置Android SDK,确保API级别≥21(Android 5.0+)。此示例演示了最基本的UI交互,实际开发中可扩展添加网络请求、本地存储等功能。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值