What is the difference between using ListFragment and custom Fragment( with ListView in it) elements ?
Same question applies to DialogFragment.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
ListFragment provides specific API methods to deal with lists. If all your fragment needs is a ListView, is a nice approach to use it. If your layout is more complex, you’d better inflate your own one.
ListFragment usage makes easier to manage a single ListView layout.