带有ImageButton的Android布局重叠其他元素

带有ImageButton的Android布局重叠其他元素,第1张

概述我试图偏移一个按钮,并使其位置,以便它似乎挂在其他元素上.在这张图片中可以看到我正在寻找的东西…注意图像按钮,它是我的xml中的idibLoginButton,红色箭头指向:这是我的布局的xml,但我不知道如何使ibLoginButton具有这种效果.我是否需要以编程方式执行此 *** 作?如果是这样,怎么样?

我试图偏移一个按钮,并使其位置,以便它似乎挂在其他元素上.在这张图片中可以看到我正在寻找的东西…注意图像按钮,它是我的xml中的ID ibLoginbutton,红色箭头指向:

这是我的布局的xml,但我不知道如何使ibLoginbutton具有这种效果.我是否需要以编程方式执行此 *** 作?如果是这样,怎么样?

<?xml version="1.0" en@R_404_5563@="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"    androID:ID="@+ID/db1_root"    androID:orIEntation="vertical"    androID:layout_wIDth="fill_parent"    androID:layout_height="fill_parent">    <relativeLayout                androID:layout_height="54dp">        <ImageVIEw            androID:ID="@+ID/ivLoginPicture"            androID:contentDescription="@string/description_logo"            androID:src="@drawable/mdslogoForLoginTrans"            androID:background="#ffffffff"            androID:layout_wIDth="32dp"            androID:layout_height="44dp"            androID:layout_gravity="center_vertical"            androID:layout_marginleft="5dp"            androID:layout_marginRight="5dp"            androID:layout_centerVertical="true" />        <TextVIEw            androID:ID="@+ID/tvLoginname"            androID:text="Dr. Dentist"            androID:textAppearance="?androID:attr/textAppearanceMedium"            androID:layout_wIDth="230.5dp"            androID:layout_height="wrap_content"            androID:layout_toRightOf="@+ID/ivLoginPicture"            androID:layout_centerVertical="true" />        <Imagebutton            androID:ID="@+ID/iblogout"            androID:src="@drawable/logoutbutton"            androID:layout_wIDth="80dp"            androID:layout_height="38dp"            androID:layout_gravity="center_vertical"            androID:layout_alignParentRight="true"            androID:layout_centerVertical="true"            androID:scaleType="fitXY"            androID:paddingtop="0dp"            androID:paddingRight="0dp"            androID:paddingBottom="0dp"            androID:paddingleft="0dp" />        <Imagebutton            androID:src="@androID:drawable/ic_menu_gallery"            androID:layout_wIDth="50dp"            androID:layout_height="50dp"            androID:ID="@+ID/ibLoginbutton"            androID:layout_centerVertical="true"            androID:layout_centerHorizontal="true" />    </relativeLayout>    <linearLayout        androID:ID="@+ID/HomePage"        androID:layout_weight="1"        androID:background="@drawable/home_background"        androID:layout_wIDth="fill_parent"        androID:layout_height="fill_parent">        <GrIDVIEw            androID:ID="@+ID/GrID"            androID:layout_wIDth="fill_parent"            androID:layout_height="fill_parent"            androID:columnWIDth="90dp"            androID:numColumns="auto_fit"            androID:ListSelector="@androID:color/transparent"            androID:verticalSpacing="10dp"            androID:horizontalSpacing="10dp"            androID:stretchMode="columnWIDth"            androID:gravity="center"            androID:scrollbars="vertical" />    </linearLayout>    <WebVIEw        androID:layout_wIDth="fill_parent"        androID:layout_height="100dip"        androID:layout_alignParentBottom="true"        androID:background="@drawable/gradIEntNews"        androID:ID="@+ID/webVIEw1" /></linearLayout>

任何有AndroID布局知识的人都请光一点!我很难过.

谢谢您的帮助.

解决方法:

夫妻俩需要改变

>需要将顶级linearLayout变为relativeLayout.
>需要在其relativeLayout之外移动ibLoginbutton按钮
> ibLoginbutton需要在它覆盖的两个区域之后,因为relativeLayout底部的项目是在顶部绘制的.

完整的示例代码,可以提供您想要的内容(在Eclipse的图形布局预览中看起来很好).

<?xml version="1.0" en@R_404_5563@="utf-8"?><relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"    androID:ID="@+ID/db1_root"    androID:layout_wIDth="fill_parent"    androID:layout_height="fill_parent">    <relativeLayout                androID:ID="@+ID/first_relative"        androID:layout_wIDth="wrap_content"        androID:layout_height="54dp" >        <ImageVIEw            androID:ID="@+ID/ivLoginPicture"            androID:contentDescription="@string/description_logo"            androID:src="@drawable/mdslogoForLoginTrans"            androID:background="#ffffffff"            androID:layout_wIDth="32dp"            androID:layout_height="44dp"            androID:layout_gravity="center_vertical"            androID:layout_marginleft="5dp"            androID:layout_marginRight="5dp"            androID:layout_centerVertical="true" />        <Imagebutton            androID:ID="@+ID/iblogout"            androID:src="@drawable/logoutbutton"            androID:layout_wIDth="80dp"            androID:layout_height="38dp"            androID:layout_gravity="center_vertical"            androID:layout_alignParentRight="true"            androID:layout_centerVertical="true"            androID:scaleType="fitXY"            androID:paddingtop="0dp"            androID:paddingRight="0dp"            androID:paddingBottom="0dp"            androID:paddingleft="0dp" />        <TextVIEw            androID:ID="@+ID/tvLoginname"            androID:layout_wIDth="230.5dp"            androID:layout_height="wrap_content"            androID:layout_centerVertical="true"            androID:layout_toleftOf="@+ID/iblogout"            androID:text="Dr. Dentist"            androID:textAppearance="?androID:attr/textAppearanceMedium" />    </relativeLayout>    <linearLayout        androID:ID="@+ID/HomePage"        androID:layout_weight="1"        androID:background="@drawable/home_background"        androID:layout_wIDth="fill_parent"        androID:layout_height="fill_parent"        androID:layout_below="@ID/first_relative">        <GrIDVIEw            androID:ID="@+ID/GrID"            androID:layout_wIDth="fill_parent"            androID:layout_height="fill_parent"            androID:columnWIDth="90dp"            androID:gravity="center"            androID:horizontalSpacing="10dp"            androID:ListSelector="@androID:color/transparent"            androID:numColumns="auto_fit"            androID:scrollbars="vertical"            androID:stretchMode="columnWIDth"            androID:verticalSpacing="10dp" >        </GrIDVIEw>    </linearLayout>    <WebVIEw        androID:layout_wIDth="fill_parent"        androID:layout_height="100dip"        androID:layout_alignParentBottom="true"        androID:background="@drawable/gradIEntNews"        androID:ID="@+ID/webVIEw1" />    <Imagebutton        androID:ID="@+ID/ibLoginbutton"        androID:layout_wIDth="50dp"        androID:layout_height="50dp"        androID:layout_alignParenttop="true"        androID:layout_centerHorizontal="true"        androID:layout_margintop="22dp"        androID:src="@androID:drawable/ic_menu_gallery" /></relativeLayout>

另外,应该可以仅使用单个相对布局.出于性能原因,使用最少数量的容器是最佳实践.

总结

以上是内存溢出为你收集整理的带有ImageButton的Android布局重叠其他元素全部内容,希望文章能够帮你解决带有ImageButton的Android布局重叠其他元素所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存