在xamarin.android中的absoluteLayout中定位到右下角

将相本无种,男儿当自强。这篇文章主要讲述在xamarin.android中的absoluteLayout中定位到右下角相关的知识,希望能为你提供帮助。
【在xamarin.android中的absoluteLayout中定位到右下角】我有这样的绝对布局

< ?xml version="1.0" encoding="utf-8"?> < AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent"> < LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> //stuff < /LinearLayout> < Button android:text="test" android:textStyle="bold" android:layout_width="50dp" android:layout_height="50dp" android:layout_x="10dp" android:layout_y="10dp" /> < /AbsoluteLayout>

它需要一个按钮并将其定位在距离屏幕顶部10dp和屏幕左侧10dp的左上角位置。
我需要在那里添加另一个按钮并将其放置在屏幕的右下角,但我不知道如何设置从底部和右侧位置计算的位置(layout_x和y),它们目前是从顶部和剩下。
这可能吗?如果它能解决问题,我甚至愿意使用相对或类似的布局而不是绝对布局。
答案自API3以来,AbsoluteLayout已被弃用。
您可以使用RelativeLayout代替并为按钮设置android:layout_alignParentBottom="true"android:layout_alignParentRight="true"
< Button android:text="Button" android:textStyle="bold" android:layout_width="50dp" android:layout_height="50dp" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" />


    推荐阅读