zoukankan      html  css  js  c++  java
  • 【Android】6.0 第6章 对话框--本章示例主界面

    分类:C#、Android、VS2015;

    创建日期:2016-02-08

    在Android应用中,常用的对话框有:Toast、AlertDialog、ProgressDialog、时间选择对话框、日期选择对话框等。这一章主要介绍这些常用对话框的基本用法。

    本章源程序共有4个示例,这些示例都在同一个项目中。

    项目名:ch06demos

    项目模板:Blank App(Android)

    1、运行截图

    主界面运行截图如下:

    image

    点击每行的示例项,即进入对应示例的页面。

    2、主界面(Main.axml)

    将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="fill_parent"
        android:layout_height="fill_parent">
        <ListView
            android:minWidth="25px"
            android:minHeight="25px"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/listView1" />
    </LinearLayout>

    3、在AndroidManifest.xml文件中添加使用的主题

    设置应用到所有页面的主题。

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="ch06demos.ch06demos" android:versionCode="1" android:versionName="1.0">
      <uses-sdk android:minSdkVersion="16" />
      <application android:label="ch06demos"
        android:theme="@android:style/Theme.DeviceDefault.Light">
      </application>
    </manifest>

    4、主界面对应的活动文件(MainActivity.cs)

    本章示例全部完成后MainActivity.cs的代码如下:

    using System.Collections.Generic;
    using Android.App;
    using Android.Widget;
    using Android.OS;
    using ch06demos.SrcActivity;
    
    namespace ch06demos
    {
        [Activity(Label = "ch06demos", MainLauncher = true, Icon = "@drawable/icon")]
        public class MainActivity : Activity
        {
            string[] items;
            protected override void OnCreate(Bundle bundle)
            {
                base.OnCreate(bundle);
                SetContentView(Resource.Layout.Main);
                items = new string[]
                {
                    "Demo01:Toast",
                    "Demo02:AlertDialog",
                    "Demo03:ProgressDialog",
                    "Demo04:DatePicker、TimePicker"
                };
                ListView listView1 = FindViewById<ListView>(Resource.Id.listView1);
                listView1.Adapter = new ArrayAdapter<string>(this,
                    Android.Resource.Layout.SimpleListItem2, items);
                listView1.ItemClick += (s, e) =>
                {
                    int index = e.Position + 1;
                    switch (index)
                    {
                        case 1:
                            StartActivity(typeof(Demo01Toast));
                            break;
                        case 2:
                            StartActivity(typeof(Demo02AlertDialog));
                            break;
                        case 3:
                            StartActivity(typeof(Demo03ProgressDialog));
                            break;
                        case 4:
                            StartActivity(typeof(Demo04DatePickerDialog));
                            break;
                    }
                };
            }
        }
    }
  • 相关阅读:
    THINKPHP 错误:Undefined class constant 'MYSQL_ATTR_INIT_COMMAND'
    Vs2013 坑爹的Target framework问题
    在使用Vs2013打开Vs2008的解决方案时出现了以下错误:此版本的应用程序不支持其项目类型(.csproj)
    sql server2008R2 无法连接到WMI提供程序。你没有权限或者该服务器无法访问
    SqlDateTime 溢出。必须介于 1/1/1753 12:00:00 AM 和 12/31/9999 11:59:59 PM 之间。
    [UE4]手持多把枪的位置调节
    [UE4]函数分组
    [UE4]射击起点、终点的计算方法
    [UE4]条件融合动画: Blend Posed by int
    [UE4]函数和事件的区别
  • 原文地址:https://www.cnblogs.com/rainmj/p/5185193.html
Copyright © 2011-2022 走看看