I tried the following code
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
list = (ListView) findViewById(R.id.listView);
personList = new ArrayList<HashMap<String,String>>();//Warning in this line Explicit type arg <> diamond
getData();
}
but I get this warning in this line
personList= new ArrayList<HashMap<String,String>>();