Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AlertDialog: How To Remove Black Borders Above and Below View

This question has been asked before: AlertDialog custom title has black border

But was not answered satisfactorily - and is missing some information.


I'm trying to create a custom dialog in Android without a title and without any buttons along the bottom.

However, the resulting dialog has black "borders"/"spacing"/something along the top and bottom of the view.

From the Documentation:

A dialog made with the base Dialog class must have a title. If you don't call setTitle(), then the space used for the title remains empty, but still visible. If you don't want a title at all, then you should create your custom dialog using the AlertDialog class. However, because an AlertDialog is created easiest with the AlertDialog.Builder class, you do not have access to the setContentView(int) method used above. Instead, you must use setView(View). This method accepts a View object, so you need to inflate the layout's root View object from XML.

So, that's what I did:

Welcome.java

public class Welcome  extends Activity {     public void onCreate(Bundle savedInstanceState)     {         super.onCreate(savedInstanceState);          setContentView(R.layout.welcome);          LayoutInflater inflater = (LayoutInflater)this.getSystemService(LAYOUT_INFLATER_SERVICE);         View layout = inflater.inflate(R.layout.welcomedialog, (ViewGroup)findViewById(R.id.layout_root));          AlertDialog.Builder builder = new AlertDialog.Builder(this);         builder.setView(layout);         builder.create().show();     } } 

welcomedialog.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"               android:layout_width="fill_parent"               android:layout_height="fill_parent"               android:background="@drawable/texturebg"               android:id="@+id/layout_root"               android:orientation="vertical"               android:padding="40px">     ... </LinearLayout> 

NOTE: I've tried using FrameLayout as the root ViewGroup instead of LinearLayout as per a suggestion I found somewhere - but that didn't help.

Result

enter image description hereenter image description here


setBackgroundDrawable Suggestion

public class Welcome  extends Activity {     public void onCreate(Bundle savedInstanceState)     {         super.onCreate(savedInstanceState);          setContentView(R.layout.welcome);          LayoutInflater inflater = (LayoutInflater)this.getSystemService(LAYOUT_INFLATER_SERVICE);         View layout = inflater.inflate(R.layout.welcomedialog, (ViewGroup)findViewById(R.id.layout_root));          AlertDialog.Builder builder = new AlertDialog.Builder(this);         builder.setView(layout);         AlertDialog dialog = builder.create();          dialog.getWindow().setBackgroundDrawable(new ColorDrawable(0));          dialog.show();     } } 

Didn't work for me.

like image 491
Steve Avatar asked May 03 '12 14:05

Steve


People also ask

How do I set the width and height of an AlertDialog?

show(); alertDialog. getWindow(). setLayout(600, 400); //Controlling width and height. Or you can do it in my way.

How do I turn off AlertDialog?

AlertDialog generally consists of the main title, the message, and two buttons, technically termed as a positive button and a negative button. Both positive and negative buttons can be programmed to perform various actions. By default, the negative button lets close the AlertDialog without any additional lines of code.

How do I get view from AlertDialog?

Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project. Step 2 − Add the following code to res/layout/activity_main. xml.

How do I change the font in AlertDialog?

If you only want to change text format, you can just override alertDialogTheme attribute to change the theme for the AlertDialog . <style name="MyTheme" parent="Theme. AppCompat.


1 Answers

If you look at the AlertDialog class source you'll see most of the methods are simply proxy methods (facade) around private AlertController mAlert.

Looking at the AlertController class source you'll see 4 interesting member variables:

private int mViewSpacingLeft; private int mViewSpacingTop; private int mViewSpacingRight; private int mViewSpacingBottom; private boolean mViewSpacingSpecified = false; 

Setting mViewSpacingSpecified to true will remove the borders on the top and bottom of the dialog.

This is done properly by changing this line:

dialog.setView(layout); 

to:

dialog.setView(layout, 0, 0, 0, 0); 
like image 161
Steve Avatar answered Sep 19 '22 18:09

Steve