xamarin android viewswitcher 怎么用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xamarin android viewswitcher 怎么用相关的知识,希望对你有一定的参考价值。
参考技术A xamarin -HelloWorld先新建一个项目,点击新建项目->模板->android
新建了一个APP1,可以从项目管理器中看出有resources,assets,properties,activity这几个东东
目前,只需要知道resources下的文件是干什么,Mainactivity这个又是干什么的!
resources/drawable这个用于存放图片,resources/layout这个用于存放界面视图AXML|Mainactivity这是程序的主要行为
打开layout/Main.axml
可以看到一个这样的界面
[csharp] view plain
copy
<?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">
<Button
android:id="@+id/MyButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/Hello" />
</LinearLayout>
在打开Mainactivity这个行为类(vs自行预置这段代码!)
先定义了一个count变量,用于记录变化->至于什么变化下面介绍
使用了一段SetContentView这个方法,用于设置显示行为的界面视图!
Resource.Layout.Main是什么鬼?其实这无非就是resources/layout/Main.axml这个视图代码!
下面一行又出现了一句Button button = FindViewById<Button>(Resource.Id.MyButton);
Resource.Id.MyButton是android:id="@+id/MyButton"中定义的!
FindViewById这个方法可以理解为获取返回一个视图代码的元素对象!
现在结合上下文你会发现不管是用代码android:id="@+id/MyButton"定义元素,还是添加的视图都可以在Resource类中获取!
最后一句button.click是用lamada表达式添加的方法! 参考技术B millionsof millions to one
以上是关于xamarin android viewswitcher 怎么用的主要内容,如果未能解决你的问题,请参考以下文章
Xamarin.Forms 是 Xamarin.Android、Xamarin.IoS 和 Xamarin.Win 的简单总和吗?
xamarin android开发 两个按钮 怎么放在同一排上
抽屉布局在 Xamarin.Android.Support.Core.UI 和 Xamarin.Android.Support.V4 中都存在
无法使用 Xamarin.Android 中的 Xamarin.Mobile 组件保存联系人
将Xamarin.Android应用程序迁移到Xamarin.Forms应用程序
dotnet 5 和 Xamarin Android:找不到导入的项目“Xamarin.Android.CSharp.targets”