Xamarin.Android RelativeLayout
Posted 南语喃
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Xamarin.Android RelativeLayout相关的知识,希望对你有一定的参考价值。
初次接触Xamarin.Android.
由于国内Xamarin的资料少见,我大多参考JAVA原生代码,慢慢摸索过来。
我把摸索出来的结果广而告之,希望后来人能少走一点弯路,也希望你也能做出一份贡献。
如果你学会了RelativeLayout,那LinearLayout自然手到擒来。
动态添加学会了,静态添加还远吗?
1. 创建RelativeLayout
RelativeLayout Test = new RelativeLayout(this.Context);
2. 添加控件
2.1 基础添加
TextView TestText = new TextView(this.Context); Test.AddView(TestText);
2.2 顶部添加 (底部添加等等类似)
RelativeLayout Test = new RelativeLayout(this.Context); TextView TestText = new TextView(this.Context);
TestText.Text="我是1号"; RelativeLayout.LayoutParams TestTextRP = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WrapContent, RelativeLayout.LayoutParams.WrapContent); TestTextRP.AddRule(LayoutRules.AlignParentTop); Test.AddView(TestText,TestTextRP);
Android使用LayoutParams控制控件的空间布局。
而C#常用的布局是通过对控件的空间属性进行修改,这种设计思路在Android不适用了。
我不得不告诉你,如果你需要对控件布局参数进行修改,请务必使用LayoutParams。入乡随俗。
2.3 添加在另一个控件的后面
RelativeLayout Test = new RelativeLayout(this.Context); TextView TestText = new TextView(this.Context); TestText.Text = "我是1号"; RelativeLayout.LayoutParams TestTextRP = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WrapContent, RelativeLayout.LayoutParams.WrapContent); TestTextRP.AddRule(LayoutRules.AlignParentTop); Test.AddView(TestText,TestTextRP); TextView NextText = new TextView(this.Context); NextText.Text = "我是2号"; RelativeLayout.LayoutParams NextTextRP = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WrapContent, RelativeLayout.LayoutParams.WrapContent); //注意这里 TestText.Id = View.GenerateViewId(); NextTextRP.AddRule(LayoutRules.Below,TestText.Id); Test.AddView(NextText, NextTextRP);
测试图片:
这里面的关键点是给上一个控件的ID进行赋值。(我使用的是系统生成的值。你可以尝试其它值,如1,2,3..等等。)
如果你不赋值,那么实际效果是两个TextView将会重叠。
经过测试,每个控件的默认ID是-1.
2.4 待续
出自: https://www.cnblogs.com/nanyunan/p/9189057.html
以上是关于Xamarin.Android RelativeLayout的主要内容,如果未能解决你的问题,请参考以下文章
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”