Unconditional layout inflation from view adapter warning

View adapter is built so that instead of creating a new view for each item, views that scroll off screen can be reused (they are passed in via the 2nd argument of getView). You are being warned that you should try to reuse these views instead of always inflating new ones. Change the line to

if (view == null) view = View.inflate(getActivity(),R.layout.dialogue_item, null);