I am trying to create ListView and fill it with data , but when i launch the application crashes and shows me a message
ListView
Unfortunately,…
It seems that your misused its constructor.
Try this:
ArrayAdapter value = new ArrayAdapter(this,android.R.layout.simple_list_item_1, android.R.id.text1, actions);
In ArrayAdapter Documentaion, the third parameter should be an ID of a TextView
TextView