Android DialogFragment Автоматическое изменение размера

Мой вопрос похож на Полноэкранный диалоговый фрагмент в Android, но этот вопрос не совсем решить мою проблему.

У меня есть DialogFragment, для которого я хотел бы установить максимальные размеры и автоматически уменьшить размер, если DialogFragment выходит за пределы дисплея. Это похоже на то, что должно быть встроено в ОС, но единственное решение, которое я смог придумать, — это опрос размеров дисплея и изменение размера вручную, если размеры выходят за пределы дисплея.

В DialogFragment onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState):

    // Display the first screen
    m_rootView = inflater.inflate(R.layout.fragment_popup, container, false);

    // Readjust the size of the dialog fragment if it is too large for the display
    Globals.AdjustSizeOfDialogFragment(getActivity(), container);

Код изменения размера в Globals.java:

// Adjusts the size of a dialog fragment's popup view to ensure that it fits within the display of the current device
public static void AdjustSizeOfDialogFragment(final Activity parentActivity, final View popupRoot)
{
    // If all of our function parameters are valid
    if ((parentActivity != null) && (popupRoot != null))
    {
        // If the dialog's root view has already rendered (has defined layout parameters)
        if (popupRoot.getLayoutParams() != null)
        {
            // Resize the dialog now
            ResizeDialogFragment(parentActivity, popupRoot);
        }
        // Else the view has not finished rendering yet
        else
        {
            // Assign a listener to notify us when it has finished rendering
            popupRoot.addOnLayoutChangeListener(new OnLayoutChangeListener()
            {
                public void onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom)
                {
                    // Remove the layout listener
                    v.removeOnLayoutChangeListener(this);

                    // Now we can render the dialog
                    ResizeDialogFragment(parentActivity, popupRoot);
                }
            });
        }
    }
}

// Does the actual logic/math behind the AdjustSizeOfDialogFragment function
private static void ResizeDialogFragment(Activity parentActivity, View popupRoot)
{
    // Retrieves information about the display of the current device
    DisplayMetrics              deviceDisplayMetrics    = new DisplayMetrics();
    // Layout parameters that need to be applied to the popup's root view
    LinearLayout.LayoutParams   llParams                = null;
    FrameLayout.LayoutParams    flParams                = null;

    // If all of our function parameters are valid
    if ((parentActivity != null) && (popupRoot != null) && (popupRoot.getLayoutParams() != null))
    {
        // Retrieve the layout parameters from the popup's root view and also get information on the current device's display
        if (popupRoot.getLayoutParams() instanceof LinearLayout.LayoutParams)
        {
            llParams = (LinearLayout.LayoutParams) popupRoot.getLayoutParams();
        }
        else if (popupRoot.getLayoutParams() instanceof FrameLayout.LayoutParams)
        {
            flParams = (FrameLayout.LayoutParams) popupRoot.getLayoutParams();
        }
        parentActivity.getWindowManager().getDefaultDisplay().getMetrics(deviceDisplayMetrics);

        // If either the height or width of the popup view is greater then the height or width
        // of the current display, clip them to approximately 90% of the display's width/height.
        if (llParams != null)
        {
            if (llParams.width > deviceDisplayMetrics.widthPixels)
            {
                llParams.width = (int) (deviceDisplayMetrics.widthPixels * 0.9);
            }
            if (llParams.height > deviceDisplayMetrics.heightPixels)
            {
                llParams.height = (int) (deviceDisplayMetrics.heightPixels * 0.9);
            }
        }
        else if (flParams != null)
        {
            if (flParams.width > deviceDisplayMetrics.widthPixels)
            {
                flParams.width = (int) (deviceDisplayMetrics.widthPixels * 0.9);
            }
            if (flParams.height > deviceDisplayMetrics.heightPixels)
            {
                flParams.height = (int) (deviceDisplayMetrics.heightPixels * 0.9);
            }
        }
    }
}

Вопрос в том, каков реальный способ Android сделать это? Это мой единственный вариант? Похоже, что это должно быть встроено в ОС, но никто из тех, кого я спрашивал, не смог этого найти.


person paulrehkugler    schedule 19.12.2012    source источник


Ответы (1)


Возможно, у вас есть эта проблема, потому что окна настраивают отображение вашего DialogFragment, поэтому, если установить для свойства windowSoftInputMode значение adjustNothing в AndroidManifest.xml отображаемой активности, это может решить вашу проблему.

<activity
    ...
    android:windowSoftInputMode="adjustNothing">
...

К сведению: https://developer.android.com/training/keyboard-input/visibility.html#ShowOnStart

person Daniel De León    schedule 25.06.2013