listView動的に設定しています。から受け取る各行に2つのものが表示されparse.comます。最初のものを左揃えにして青にし、2番目のものを右揃えにして赤にします。、、の2つの配列がfirstArrayありsecondArrayます。私はこれを行う方法をたくさん見つけましたが、動的にはありませんでした。どうすればこれを行うことができますか、それともで行うことができますxmlか?
更新しました
これは、xml@t0sによって投稿されたそのチュートリアルの後の私のものです
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:padding="2dp"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView
    android:id="@+id/column1"
    android:layout_width="50dip"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:textColor="#0000FF"
    android:gravity="left"
    />
    <TextView
    android:id="@+id/center"
    android:text="VS"
    android:textSize="15sp"
    android:layout_width="50dip"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:textColor="#FFFFFF"
    android:gravity="center"
   />
       <TextView
    android:id="@+id/column2"
    android:layout_width="50dip"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:textColor="#FF0000"
    android:gravity="right"
   />
    </LinearLayout>
と私のJava
 ListView list = (ListView) findViewById(R.id.mylist);
                ArrayAdapter<String> listAdapter = new  ArrayAdapter<String>(MainActivity.this, R.layout.mylist, namesArray);
                list.setAdapter(listAdapter);
 //find my objects off parse, and call this method
private String display(Object name, Object record,
         ArrayAdapter listAdapter) {
    String fightCard = (name).toString();
    namesArray.add((name).toString() +" " + (record).toString());
    return fightCard;
}
