欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

【Android】第5章(1)常用基本控件--本章示例主界面

程序员文章站 2022-05-20 22:36:58
...

分类:C#、Android、VS2015; 创建日期:2016-02-06 这一章主要介绍Android简单控件的基本用法。本章源程序共有9个示例,这些示例都在同一个项目中。 项目名:ch05demos,项目模板:Blank App(Android) 运行主界面截图如下: 点击每行的示例项,即进入对应示

分类:C#、Android、VS2015;

创建日期:2016-02-06

这一章主要介绍Android简单控件的基本用法。本章源程序共有9个示例,这些示例都在同一个项目中。

项目名:ch05demos,项目模板:Blank App(Android)

运行主界面截图如下:

【Android】第5章(1)常用基本控件--本章示例主界面

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

1、在drawable文件夹下添加图片

添加的图片见下面的左图,也可以直接拖放图片到drawable文件夹下。

右图是各节例子实现后的纵向屏幕布局文件(layout文件夹)、横向屏幕布局文件(layout-land文件夹)、弹出菜单布局文件(menu文件夹)。这些都是在本章后续将要介绍的节中添加的。

【Android】第5章(1)常用基本控件--本章示例主界面

2、主界面(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、主界面对应的活动文件(MainActivity.cs)

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

using System;
using Android.App;
using Android.Widget;
using Android.OS;
using ch05demos.SrcActivity;

namespace ch05demos
{
    [Activity(Label = "ch05demos", 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[]
            {
                "Demo01EditText",
                "Demo02Login",
                "Demo03MultiResolution",
                "Demo04CheckBoxRadioButton",
                "Demo05Spinner",
                "Demo06SwitchAndRatingBar",
                "Demo07PopupMenu",
                "Demo08Gallery",
                "Demo09SeekBar"
            };
            ListView listView1 = FindViewById(Resource.Id.listView1);
            listView1.Adapter = new ArrayAdapterstring