I am trying to display list of users from an online database
id  username
1   aaaaa
2   bbbbb
3   ccccc
I'm getting the above result, now I want to add another column/TextView besides those username, perhaps firstname, or lastname,
id  username  lastname
1  aaaaa          please
2  bbbbb          help
3  ccccc          me
I believe this part of the code populates the ListView
private void showEmployee(){
    JSONObject jsonObject = null;
    ArrayList<HashMap<String,String>> list = new          ArrayList<HashMap<String, String>>();
    try {
        jsonObject = new JSONObject(JSON_STRING);
        JSONArray result = jsonObject.getJSONArray(Config.TAG_JSON_ARRAY);
        for(int i = 0; i<result.length(); i++){
            JSONObject jo = result.getJSONObject(i);
            String id = jo.getString(Config.TAG_ID);
            String username =     jo.getString(Config.TAG_UNAME);
            //String firstname = jo.getString(Config.TAG_FNAME);
            HashMap<String,String> employees = new HashMap<>();
            employees.put(Config.TAG_ID,id);
            employees.put(Config.TAG_UNAME,username);
          //  employees.put(Config.TAG_UNAME,username);
            list.add(employees);
        }
    } catch (JSONException e) {
        e.printStackTrace();
    }
    ListAdapter adapter = new SimpleAdapter(
            act_viewAllusers.this, list, R.layout.list_item,
            new String[]{Config.TAG_ID,Config.TAG_UNAME},
            new int[]{R.id.id, R.id.username});
  /***  ListAdapter adapter = new SimpleAdapter(
            act_viewAllusers.this, list, R.layout.list_item,
            new String[]{Config.TAG_ID,Config.TAG_UNAME,Config.TAG_FNAME},
            new int[]{R.id.id, R.id.username,R.id.fname}); ***/
    listView.setAdapter(adapter);
}                              
I have a separate Java class named Config.java which contains some URLs and JSON tags which currently I can't really understand.
Here's some part of it
//JSON Tags
public static final String TAG_JSON_ARRAY="result";
public static final String TAG_ID = "id";
public static final String TAG_UNAME = "username";
public static final String TAG_PWORD = "password";
public static final String TAG_FNAME = "firstname";
public static final String TAG_LNAME = "lastname";
public static final String TAG_BDAY = "birthday";
public static final String TAG_GENDER = "gender";
Here's the XML for my ListView
<?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://     schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TextView
        android:layout_marginRight="10dp"
        android:id="@+id/id"
        android:layout_width="40dp"
        android:layout_height="wrap_content" />
    <TextView
        android:id="@+id/username"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
    <TextView
        android:id="@+id/fname"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
    <TextView
        android:id="@+id/lname"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</LinearLayout>
Another XML file for the ListView
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_act_view_allusers"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.bayona.lesson1.act_viewAllusers">
    <ListView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/listView" />
</LinearLayout>
Perhaps it's imposible to add another column or TextView; it's fine, but what bothers me is that I can't change the username displays.
For instance, I want to display lastname besides the id number
 
     
     
     
    