can you please tell me some differences btw listview and recycler view so that i can know when to use either of them,and if we have listview what is the use of recycler view??
Diff btw recycler view and listview
Have you watched recyclerview and list view throughly ? If yes you would know the answer to the question. Let me know if that’s still unclear.
I just got to know that recycler views are more efficient than list views and their implementation is also easy for complex object.Is there anything other than this i should know about them??
How ther are efficient can you tell that ?
In list view raw form,list item view get created everytime so there is heavy load on os but in recycler view the views get recycled and only data in them changed after first 4-5 views.Although we can get same functionality in list views too after making some optimization like making CourseViewHolder and efficiently using counterView
I guess than you have your answer
Yup,Sir can you tell me use of contraint layout,i mean why we need it and what are the types of constrains it provide??
You don’t need it you can do almost everything using linear layout and frame layout
Bdw it provides more 20 25 types of different constraints as far as i remember.
what these constraint are ,i mean what type of constraint do they provide in our layout,related to dimension, position of views or anything else??
You can think of them similar to relative layout nothing else.