我似乎无法将布局定位在我想要的位置,它确实在文档中说框架布局应该只包含一个孩子,但我已经看到很多例子,这似乎并非如此.
是否无法在框架布局中定位相对布局?
我希望条带点出现在视图寻呼机上但在底部,就像带有点的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_horizontal”而不是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 – 在框架布局内定位所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)