码迷,mamicode.com
首页 > 移动开发 > 详细

VS/Xamarin Android开发Follow Me(二)

时间:2020-01-10 10:34:21      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:history   protect   gate   android开发   put   sla   label   提前   val   

一、界面

1.打开Resources/layout/Main.axml文件,并在Call Button下方继续加入一个按钮,并设置其id为@+id/CallHistoryButton同时设置Text为@string /callHistory(这个其实是一个字符串资源的标识符,后面我们会添加该资源):

技术图片

二、资源

1.打开Resources/values/Strings.xml文件

技术图片

2.并在其中加入一个name为callHistory的字符串资源:

技术图片

3.回到Main.axml可以看到最后一个button显示的字符串变掉了:

技术图片

4.之前的Call button是通过代码的方式禁用的,这次我们将CallHistory Button通过属性该改变:

技术图片

可以看到按钮被禁用了:

技术图片

三、代码

1.右击项目,新建一个名为CallHistoryActivity的活动:

技术图片

2.打开刚才新建的活动,修改该活动的标题名称,继承的类并显示传递过来的字符串数组:

namespace Phoneword_Droid
{
    [Activity(Label = "@string/callHistory")]
    public class CallHistoryActivity : ListActivity
    {
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);
            //从意图中获取传递过来的参数
            var phoneNumbers = Intent.Extras.GetStringArrayList("phone_numbers") ?? new string[0];

            //将字符串数组显示到列表控件中(因为继承的是ListActivity所以整个视图就是一个列表)
            this.ListAdapter = new ArrayAdapter<string>(this, Android.Resource.Layout.SimpleListItem1, phoneNumbers);

            //关于ArrayAdapter的第二个参数,其实就是指定列表中每个项的视图,后面我们会通过自定义的方式控制列表的项
        }
    }
}

3.回到MainActivity.cs中,既然要显示历史记录,那么自然就必须要能够保存所以我们需要定义一个变量:

     [Activity(Label = "Phoneword_Droid", MainLauncher = true, Icon = "@drawable/icon")]
     public class MainActivity : Activity
     {
         static readonly List<string> phoneNumbers = new List<string>();

4.然后还要为callHistoryButton绑定监听事件,以便打开另一个活动(在OnCreate后面继续追加):

Button callHistoryButton = FindViewById<Button>(Resource.Id.CallHistoryButton);
            callHistoryButton.Click += (e, t) =>
            {
                //指定意图需要打开的活动
                var intent = new Intent(this, typeof(CallHistoryActivity));
                //设置意图传递的参数
                intent.PutStringArrayListExtra("phone_numbers", phoneNumbers);
                StartActivity(intent);
            };

5.我们缺少一个添加历史记录的方法,这里我们应该将其放入对话框的Call方法中,这样只要拨打了的电话才会进入到历史记录中:

//拨打按钮
                callDialog.SetNeutralButton("Call", delegate
                {
                    //将电话加入到历史记录列表中
                    phoneNumbers.Add(translatedNumber);

                    //如果callHistoryButton的定义在这段代码后面将会出错,所以我们这个时候需要将
                    //Button callHistoryButton = FindViewById<Button>(Resource.Id.CallHistoryButton); 代码提前
                    callHistoryButton.Enabled = true;

                    //使用意图拨打电话
                    var callIntent = new Intent(Intent.ActionCall);

                    //将需要拨打的电话设置为意图的参数
                    callIntent.SetData(Android.Net.Uri.Parse("tel:" + translatedNumber));
                    
                    StartActivity(callIntent);
                });

四、运行

技术图片

技术图片

今天就到这里……

VS/Xamarin Android开发Follow Me(二)

标签:history   protect   gate   android开发   put   sla   label   提前   val   

原文地址:https://www.cnblogs.com/xtxk110/p/12174613.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!