18
วิธีสร้างความกว้าง DialogFragment เป็น Fill_Parent
ฉันกำลังทำงานกับแอปพลิเคชัน Android ที่ฉันใช้DialogFragmentเพื่อแสดงกล่องโต้ตอบ แต่ความกว้างของมันมีขนาดเล็กมาก ฉันจะทำให้กว้างขนาดนี้fill_parentได้อย่างไร? public class AddNoteDialogFragment extends DialogFragment { public AddNoteDialogFragment() { // Empty constructor required for DialogFragment } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { getDialog().setTitle(getString(R.string.app_name)); View view = inflater.inflate(R.layout.fragment_add_note_dialog, container); return view; } @Override public Dialog onCreateDialog(Bundle savedInstanceState) { Dialog dialog = super.onCreateDialog(savedInstanceState); …