我試圖在對話框片段的頂部顯示配置文件圖片,其中一半是在image.and之外的,我在下面附加了示例對話框,就像那樣。並嘗試了所有來自舊的Stackoverflow解決方案的FrameLayout協作,但是我無法將其歸檔。請給我正確的解決方案。謝謝。如何在android中的對話框外顯示圖像?
更新 我還試圖使透明的ImageView的父佈局,但之後對話框顯示不工作英寸我附上我的xml和下面的結果屏幕截圖。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_item"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:id="@+id/imageshow"
android:layout_width="match_parent"
android:layout_height="100dp">
<View
android:id="@+id/imagePadding"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="@android:color/transparent" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/imagePadding"
android:background="#ff0000"></LinearLayout>
<ImageView
android:id="@+id/info_profile"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_centerHorizontal="true"
android:src="@drawable/technician_pitcher" />
</RelativeLayout>
內進行對話BG透明。然後按你想要的那樣畫出它。 –
發佈您的XML佈局文件的對話框 –
透明的背景也我試過它不工作。請找出我最新的問題。 –