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

转载于:https://www.cnblogs.com/nanyunan/p/9189057.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值