অলিভিয়ের্গের উত্তর আমার পক্ষে কাজ করেছে এবং যদি আপনি যেতে চান এমন একটি কাস্টম ডায়ালগ ক্লাস তৈরি করা সবচেয়ে ভাল সমাধান। তবে এটি আমাকে বিরক্ত করেছিল যে আমি সতর্কতা ডায়ালগ ক্লাসটি ব্যবহার করতে পারি না। আমি ডিফল্ট সিস্টেম সতর্কতা ডায়ালগ স্টাইলটি ব্যবহার করতে সক্ষম হতে চেয়েছিলাম। একটি কাস্টম ডায়লগ ক্লাস তৈরি করার ক্ষেত্রে এই স্টাইলটি থাকবে না।
সুতরাং আমি একটি সমাধান (হ্যাক) পেয়েছি যা কাস্টম ক্লাস তৈরি না করেই কাজ করবে, আপনি বিদ্যমান বিল্ডারদের ব্যবহার করতে পারেন।
সতর্কতা ডায়ালগ শিরোনামের জন্য স্থানধারক হিসাবে আপনার সামগ্রী দেখার উপরে একটি ভিউ রাখে। যদি আপনি ভিউটি খুঁজে পান এবং উচ্চতা 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
পদ্ধতিটি । তারপরে উপরের প্রথম উদাহরণের মতো আপনার ডায়ালগটি তৈরি করুন এবং ফিরে দিন। একমাত্র পরিবর্তনটি হ'ল আপনার তৃতীয় প্যারামিটার (শো) হিসাবে মিথ্যা পাস করা উচিত যাতে এটি ডায়ালগটিতে শো () শো না বলে। ডায়ালগফ্রেগমেন্ট এটি পরে পরিচালনা করবে।
উদাহরণ:
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
Dialog dialog = new AlertDialog.Builder(getContext())
.setView(yourCustomView)
.create();
showDialogWithNoTopSpace(yourCustomView, dialog, false);
return dialog;
}
আমি এটি আরও পরীক্ষা করার সময় আমি অতিরিক্ত অতিরিক্ত টুইটগুলি আপডেট করার বিষয়টি নিশ্চিত করব।