ओलिवियर के जवाब ने मेरे लिए काम किया और सबसे अच्छा समाधान है यदि एक कस्टम डायलॉग क्लास बनाना वह मार्ग है जिस पर आप जाना चाहते हैं। हालाँकि, इसने मुझे परेशान किया कि मैं AlertDialog क्लास का उपयोग नहीं कर सका। मैं डिफ़ॉल्ट सिस्टम AlertDialog शैली का उपयोग करने में सक्षम होना चाहता था। एक कस्टम संवाद वर्ग बनाने से यह शैली नहीं होगी।
इसलिए मुझे एक समाधान (हैक) मिला जो कस्टम क्लास बनाने के बिना काम करेगा, आप मौजूदा बिल्डरों का उपयोग कर सकते हैं।
AlertDialog शीर्षक के लिए प्लेसहोल्डर के रूप में आपके सामग्री दृश्य के ऊपर एक दृश्य डालता है। यदि आप दृश्य ढूंढते हैं और ऊँचाई को 0 पर सेट करते हैं, तो स्पेस चला जाता है।
मैंने अभी तक 2.3 और 3.0 पर इसका परीक्षण किया है, यह संभव है कि यह अभी तक हर संस्करण पर काम न करे।
यह करने के लिए दो सहायक विधियाँ हैं:
/**
* Show a Dialog with the extra title/top padding collapsed.
*
* @param customView The custom view that you added to the dialog
* @param dialog The dialog to display without top spacing
* @param show Whether or not to call dialog.show() at the end.
*/
public static void showDialogWithNoTopSpace(final View customView, final Dialog dialog, boolean show) {
// Now we setup a listener to detect as soon as the dialog has shown.
customView.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
// Check if your view has been laid out yet
if (customView.getHeight() > 0) {
// If it has been, we will search the view hierarchy for the view that is responsible for the extra space.
LinearLayout dialogLayout = findDialogLinearLayout(customView);
if (dialogLayout == null) {
// Could find it. Unexpected.
} else {
// Found it, now remove the height of the title area
View child = dialogLayout.getChildAt(0);
if (child != customView) {
// remove height
LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) child.getLayoutParams();
lp.height = 0;
child.setLayoutParams(lp);
} else {
// Could find it. Unexpected.
}
}
// Done with the listener
customView.getViewTreeObserver().removeGlobalOnLayoutListener(this);
}
}
});
// Show the dialog
if (show)
dialog.show();
}
/**
* Searches parents for a LinearLayout
*
* @param view to search the search from
* @return the first parent view that is a LinearLayout or null if none was found
*/
public static LinearLayout findDialogLinearLayout(View view) {
ViewParent parent = (ViewParent) view.getParent();
if (parent != null) {
if (parent instanceof LinearLayout) {
// Found it
return (LinearLayout) parent;
} else if (parent instanceof View) {
// Keep looking
return findDialogLinearLayout((View) parent);
}
}
// Couldn't find it
return null;
}
इसका उपयोग कैसे किया जाता है इसका एक उदाहरण इस प्रकार है:
Dialog dialog = new AlertDialog.Builder(this)
.setView(yourCustomView)
.create();
showDialogWithNoTopSpace(yourCustomView, dialog, true);
यदि आप इसे डायलॉगफ्रैगमेंट के साथ उपयोग कर रहे हैं, तो डायलॉगफ्रेगमेंट की onCreateDialog
विधि को ओवरराइड करें । फिर ऊपर दिए गए पहले उदाहरण की तरह अपना संवाद बनाएं और वापस लौटाएँ। एकमात्र परिवर्तन यह है कि आपको 3 के पैरामीटर (शो) के रूप में गलत पास करना चाहिए ताकि यह डायलॉग पर शो () को कॉल न करे। DialogFragment बाद में संभाल लेगा।
उदाहरण:
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
Dialog dialog = new AlertDialog.Builder(getContext())
.setView(yourCustomView)
.create();
showDialogWithNoTopSpace(yourCustomView, dialog, false);
return dialog;
}
जैसा कि मैंने इसे आगे परीक्षण किया है, मुझे आवश्यक किसी भी अतिरिक्त ट्विक्स के साथ अपडेट करना सुनिश्चित होगा।