android中控件的遮盖问题
如下:会造成imagebutton被遮盖
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff"
>
<ImageButton
android:id="@+id/proper_scan_result_refresh"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/refresh"
android:layout_marginTop="3dip"
android:layout_marginRight="5dip"
android:layout_alignParentRight="true"
/>
<TextView
android:id="@+id/proper_scan_result_title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="请您选择要连接的网络"
style="?android:attr/textAppearanceLarge"
android:textColor="#3a3a3a"
android:paddingLeft="10dip"
android:gravity="left|center_vertical"
android:background="@drawable/system_title_bg"
/>
</RelativeLayout>
但如果这样写,则imagebutton会浮在textview之上
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff"
>
<TextView
android:id="@+id/proper_scan_result_title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="请您选择要连接的网络"
style="?android:attr/textAppearanceLarge"
android:textColor="#3a3a3a"
android:paddingLeft="10dip"
android:gravity="left|center_vertical"
android:background="@drawable/system_title_bg"
/>
<ImageButton
android:id="@+id/proper_scan_result_refresh"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/refresh"
android:layout_marginTop="3dip"
android:layout_marginRight="5dip"
android:layout_alignParentRight="true"
/>
</RelativeLayout>
本文探讨了在Android应用开发中遇到的控件遮盖问题,并提供了两种不同的XML布局实现方式来解决该问题,使ImageButton不被TextView遮盖。

8472

被折叠的 条评论
为什么被折叠?



