如何在android中显示对话框外的图像?
How to show the image outside the dialog in android?
我试图在对话框片段的顶部显示个人资料图像,一半在 image.and 之外 我在下面附上示例对话框,例如 that.And 尝试了旧 Whosebug 解决方案中的所有 FrameLayout 协作,但我无法存档。请给我正确的解决方案。谢谢你。
已更新
我还尝试使 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>
enter image description here
试试下面的方法xml
custom_dialog_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/rl_dialog_container"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:padding="16dp">
<View
android:id="@+id/imagePadding"
android:layout_width="match_parent"
android:layout_height="70dp" />
<LinearLayout
android:id="@+id/round_dialog_container"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/imagePadding"
android:background="#ffffff"
android:gravity="bottom"
android:orientation="vertical">
<View
android:id="@+id/imagePadding2"
android:layout_width="match_parent"
android:layout_height="70dp" />
</LinearLayout>
<ImageView
android:id="@+id/dialog_image"
android:layout_width="140dp"
android:layout_height="140dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:src="@mipmap/ic_launcher" />
</RelativeLayout>
当您显示对话框时,请遵循以下代码:
Dialog dialog = new Dialog(MainActivity.this);
dialog.setContentView(R.layout.custom_dialog_layout);
//The line below is important
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
dialog.show();
这一定会帮助你尝试这个。
<RelativeLayout
android:layout_width="300dp"
android:layout_height="300dp"
android:layout_centerInParent="true">
<View
android:layout_width="match_parent"
android:id="@+id/li1"
android:background="@android:color/transparent"
android:layout_height="50dp"
android:orientation="horizontal">
</View>
<LinearLayout
android:layout_width="match_parent"
android:layout_below="@+id/li1"
android:background="#ff0000"
android:layout_height="match_parent">
</LinearLayout>
<ImageView
android:layout_width="100dp"
android:layout_centerHorizontal="true"
android:background="#ffd500"
android:layout_height="100dp" />
</RelativeLayout>
在相对布局中使用此代码
这可能是最简单的答案?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rl_alert_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:background="#00FFFFFF">
<TextView
android:id="@+id/alert_textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="48dp"
android:background="#FFF"
android:paddingHorizontal="20dp"
android:paddingTop="50dp"
android:paddingBottom="20dp"
android:text="Your text goes here.." />
<ImageView
android:id="@+id/alert_icon"
android:layout_width="96dp"
android:layout_height="96dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:src="@drawable/ic_alert_bell" />
</RelativeLayout>
我试图在对话框片段的顶部显示个人资料图像,一半在 image.and 之外 我在下面附上示例对话框,例如 that.And 尝试了旧 Whosebug 解决方案中的所有 FrameLayout 协作,但我无法存档。请给我正确的解决方案。谢谢你。
已更新 我还尝试使 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>
enter image description here
试试下面的方法xml
custom_dialog_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/rl_dialog_container"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:padding="16dp">
<View
android:id="@+id/imagePadding"
android:layout_width="match_parent"
android:layout_height="70dp" />
<LinearLayout
android:id="@+id/round_dialog_container"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/imagePadding"
android:background="#ffffff"
android:gravity="bottom"
android:orientation="vertical">
<View
android:id="@+id/imagePadding2"
android:layout_width="match_parent"
android:layout_height="70dp" />
</LinearLayout>
<ImageView
android:id="@+id/dialog_image"
android:layout_width="140dp"
android:layout_height="140dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:src="@mipmap/ic_launcher" />
</RelativeLayout>
当您显示对话框时,请遵循以下代码:
Dialog dialog = new Dialog(MainActivity.this);
dialog.setContentView(R.layout.custom_dialog_layout);
//The line below is important
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
dialog.show();
这一定会帮助你尝试这个。
<RelativeLayout
android:layout_width="300dp"
android:layout_height="300dp"
android:layout_centerInParent="true">
<View
android:layout_width="match_parent"
android:id="@+id/li1"
android:background="@android:color/transparent"
android:layout_height="50dp"
android:orientation="horizontal">
</View>
<LinearLayout
android:layout_width="match_parent"
android:layout_below="@+id/li1"
android:background="#ff0000"
android:layout_height="match_parent">
</LinearLayout>
<ImageView
android:layout_width="100dp"
android:layout_centerHorizontal="true"
android:background="#ffd500"
android:layout_height="100dp" />
</RelativeLayout>
在相对布局中使用此代码
这可能是最简单的答案?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rl_alert_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:background="#00FFFFFF">
<TextView
android:id="@+id/alert_textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="48dp"
android:background="#FFF"
android:paddingHorizontal="20dp"
android:paddingTop="50dp"
android:paddingBottom="20dp"
android:text="Your text goes here.." />
<ImageView
android:id="@+id/alert_icon"
android:layout_width="96dp"
android:layout_height="96dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:src="@drawable/ic_alert_bell" />
</RelativeLayout>