Make dialogue smaller on screen

I want my dialog to not fit the whole screen as shown in the picture. How should I make it not so long (height).enter image description here

public class SidemenuInfoDialogFragment extends DialogFragment {

      @Override
      public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        RelativeLayout layout = (RelativeLayout) inflater.inflate(R.layout.sidemenu_info_main, container, true);
        return layout;
      }

       @Override
       public Dialog onCreateDialog(Bundle savedInstanceState) {
         Dialog dialog = new Dialog(new ContextThemeWrapper(getActivity(), R.style.Theme_Window_NoMinWith));
            dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);

            return dialog;
          }


}

      

View:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:orientation="vertical"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                android:id="@+id/sidemenu_info_main_relative">


            <TextView
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:id="@+id/text1"
                    android:text="TEST TEXT "/>


</RelativeLayout>

      

Let me know if there is anything else to help me find the right way to fix this.

+3


source to share


4 answers


Try changing the xml:

<?xml version="1.0" encoding="utf-8"?>
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:orientation="vertical"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:id="@+id/sidemenu_info_main_relative">


        <TextView
                android:layout_width="100dp"
                android:layout_height="40dp"
                android:id="@+id/text1"
                android:text="TEST TEXT "/>

     </RelativeLayout>

      

If that doesn't work for you, this is another approach I usually do:

public class PopUp {
public  void poupUP(final Activity activity) {
    final Dialog dialog = new Dialog(activity, R.style.dialogwithoutTitle);
    dialog.getWindow().setBackgroundDrawable(new      ColorDrawable(android.graphics.Color.TRANSPARENT));
     //here add the layout
    dialog.setContentView(R.layout.pop_up);
   // The comments are to change the position of the alert dialogu
   // WindowManager.LayoutParams wmlp = dialog.getWindow().getAttributes();
    //wmlp.gravity = Gravity.TOP | Gravity.END;
    //wmlp.x = 100;   //x position
    //wmlp.y = 100;   //y position


    dialog.show();
}

      



}

Then, wherever you want it to be shown, do the following:

PopUp p = new PopUp();
p.popUP();

      

+1


source


Give your texture in your dialog a height and width as "wrap_content" .Like:



<?xml version="1.0" encoding="utf-8"?>
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:orientation="vertical"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:id="@+id/sidemenu_info_main_relative">

    <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/text1"
            android:text="TEST TEXT "/>

 </RelativeLayout>

      

+2


source


 RelativeLayout layout = (RelativeLayout) inflater.inflate(R.layout.sidemenu_info_main, container, false);

      

0


source


Try the following:

alert.getWindow().setLayout(dialogWidth, LayoutParams.WRAP_CONTENT);
WindowManager.LayoutParams layoutParams = new WindowManager.LayoutParams();
layoutParams.copyFrom(alert.getWindow().getAttributes());
layoutParams.x = xPosition;
layoutParams.y = yPosition;
alert.getWindow().setAttributes(layoutParams);

      

0


source







All Articles