ich einen benutzerdefinierten Dialog baue ein Bild mit Schließen-Schaltfläche so Pop-up:Android Custom Dialog nicht das gesamte Dialog-Layout füllt
Wie Sie das Dialog sehen können, ist nicht das Dialog Layout passend und Da ist dieser weiße Bohrer oben und rechts, also wie kann ich das weiße Randding loswerden und meinen benutzerdefinierten Dialog anpassen?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:gravity="center"
android:orientation="vertical" >
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true" >
<LinearLayout
android:id="@+id/linearMain"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="5dp"
android:layout_marginTop="10dp"
android:gravity="center"
android:orientation="vertical"
android:paddingBottom="-50dp" >
<ImageView
android:id="@+id/imgMain"
android:layout_width="300dp"
android:layout_height="350dp"
android:gravity="center"
android:background="@drawable/eairh_dialog"
/>
<!---add your views here-->
</LinearLayout>
<ImageView
android:id="@+id/imgClose"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top|right"
android:clickable="true"
android:src="@drawable/close_button" />
</FrameLayout>
</LinearLayout>
remove-Marge von oben und rechts .. –
entfernen android: layout_marginRight = „5dp“ android: layout_marginTop = „10DP“ aus linearen Layout –