在xamarin.android中的absoluteLayout中定位到右下角
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在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" />
以上是关于在xamarin.android中的absoluteLayout中定位到右下角的主要内容,如果未能解决你的问题,请参考以下文章
无法使用 Xamarin.Android 中的 Xamarin.Mobile 组件保存联系人
在Xamarin Android项目中的android Assets中添加文件夹会引发Build Error
VS 2017 的 Xamarin.Android 中的 System.Memory 支持