-1
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
<ImageView
android:id="@+id/showImg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:contentDescription="@string/showImg"
/>
<Button
android:id="@+id/photo"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignTop="@+id/showImg"
android:text="@string/photo"
/>
</RelativeLayout>
當我在代碼圖像視圖上方跑過照片按鈕時。防止圖像和按鈕重疊
我應該如何避免它?
你想在哪個方向做什麼? – KOTIOS
按鈕具有drawableLeft,drawableRight,drawableTop和drawableBottom屬性。試試這些,你根本不需要imageView –