android – 在框架布局内定位

android – 在框架布局内定位,第1张

概述我正在尝试将视图页面指示符圈添加到屏幕上,并且我有代码工作,因为我滑动图像将更改以指示我在哪个页面. 我似乎无法将布局定位在我想要的位置,它确实在文档中说框架布局应该只包含一个孩子,但我已经看到很多例子,这似乎并非如此. 是否无法在框架布局中定位相对布局? 我希望条带点出现在视图寻呼机上但在底部,就像带有点的ios内容视图一样. <FrameLayout xmlns:android="http:/ 我正在尝试将视图页面指示符圈添加到屏幕上,并且我有代码工作,因为我滑动图像将更改以指示我在哪个页面.

我似乎无法将布局定位在我想要的位置,它确实在文档中说框架布局应该只包含一个孩子,但我已经看到很多例子,这似乎并非如此.

是否无法在框架布局中定位相对布局?

我希望条带点出现在视图寻呼机上但在底部,就像带有点的ios内容视图一样.

<FrameLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:layout_wIDth="match_parent"androID:layout_height="match_parent"androID:background="@color/dark_blue"><androID.support.v4.vIEw.VIEwPager xmlns:androID="http://schemas.androID.com/apk/res/androID"    androID:layout_margintop="3dp"    androID:layout_marginleft="3dp"    androID:layout_marginBottom="3dp"    androID:layout_marginRight="3dp"    androID:ID="@+ID/home_addr_pager"    androID:layout_wIDth="match_parent"    androID:layout_height="match_parent"    androID:layout_weight="1"></androID.support.v4.vIEw.VIEwPager><relativeLayout    androID:layout_wIDth="wrap_content"    androID:layout_height="wrap_content"    androID:layout_alignParentBottom="true"    androID:layout_centerHorizontal="true">    <linearLayout        androID:orIEntation="horizontal"        androID:layout_wIDth="wrap_content"        androID:layout_height="wrap_content"        androID:ID="@+ID/dots"        /></relativeLayout></FrameLayout>
解决方法 您使用了错误的语法,对于FrameLayout,您应该使用layout_gravity =“bottom | center_horizo​​ntal”而不是androID:layout_alignParentBottom =“true”

试试这个;

<FrameLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:layout_wIDth="match_parent"androID:layout_height="match_parent"><androID.support.v4.vIEw.VIEwPager xmlns:androID="http://schemas.androID.com/apk/res/androID"    androID:ID="@+ID/home_addr_pager"    androID:layout_wIDth="match_parent"    androID:layout_height="match_parent"    androID:layout_marginBottom="3dp"    androID:layout_marginleft="3dp"    androID:layout_marginRight="3dp"    androID:layout_margintop="3dp"    androID:layout_weight="1"></androID.support.v4.vIEw.VIEwPager><relativeLayout    androID:layout_wIDth="wrap_content"    androID:layout_height="wrap_content"    androID:layout_gravity="bottom|center_horizontal">    <linearLayout        androID:ID="@+ID/dots"        androID:layout_wIDth="wrap_content"        androID:layout_height="wrap_content"        androID:gravity="bottom|center_horizontal"        androID:orIEntation="horizontal"/></relativeLayout>
总结

以上是内存溢出为你收集整理的android – 在框架布局内定位全部内容,希望文章能够帮你解决android – 在框架布局内定位所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1122413.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存