Inflate ListView with TreeMap data (Custom Adapter)
Solved : I have created an adapter based on @JJV 's suggestion. I am aware that there is plenty of room for improvement, but it works for now. I have updated this simplified version of my program, with the working code; I hope it will be useful to others: MainActivity.java: import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.widget.ListAdapter; import android.widget.ListView; import java.util.Map; import java.util.TreeMap; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate