我想在ListView中安排ArrayList值

时间:2014-05-16 04:59:13

标签: android arraylist tablelayout

我在ArrayList上工作。我想在ListView中显示ArrayList,我对在ListView中使用ArrayList一无所知。

enter image description here

在图片“Cumputer Science”是主题,它应该属于sub,其他值也属于每个。

//布局

      <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:background="@drawable/login"
android:layout_height="fill_parent"
android:orientation="vertical" >

  <LinearLayout android:layout_weight="1" android:layout_height="fill_parent"   android:layout_width="fill_parent"
  android:layout_marginTop="175dp" android:orientation="horizontal" android:background="@android:color/darker_gray"
  android:layout_marginLeft="5dp" android:layout_marginRight="5dp" android:layout_marginBottom="20dp">

  <TextView android:layout_width="wrap_content" android:layout_height="match_parent" 
    android:textSize="16dp" android:text="Sub" android:layout_marginLeft="5dp"/>

  <TextView android:layout_width="wrap_content" android:layout_height="match_parent" 
      android:textSize="16dp" android:text="Mon" android:layout_marginLeft="20dp"/>

  <TextView android:layout_width="wrap_content" android:layout_height="match_parent" 
      android:textSize="16dp" android:text="Tue" android:layout_marginLeft="23dp"/>

  <TextView android:layout_width="wrap_content" android:layout_height="match_parent" 
      android:textSize="16dp" android:text="Wed" android:layout_marginLeft="23dp"/>

  <TextView android:layout_width="wrap_content" android:layout_height="match_parent"
       android:textSize="16dp" android:text="Thu" android:layout_marginLeft="23dp"/>
  <TextView android:layout_width="wrap_content" android:layout_height="match_parent"
       android:textSize="16dp" android:text="Fri" android:layout_marginLeft="23dp"    android:layout_marginRight="2dp"/>

          </LinearLayout>
      <LinearLayout android:layout_weight="1" android:layout_height="fill_parent" android:layout_width="fill_parent" 
  android:layout_marginLeft="5dp">

     <ListView android:layout_height="match_parent"  android:layout_width="match_parent" android:id="@+id/getAttdnce_lv">

    </ListView>

   </LinearLayout>


</LinearLayout>

2 个答案:

答案 0 :(得分:1)

尝试使用TableLayout,然后根据需要动态创建行。

答案 1 :(得分:0)

public class MainActivity extends Activity {
     public static final String[] Subject = new String[] { "Maths","Computer", "english"};
    private ListView lv;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        lv=(ListView)findViewById(R.id.listView1);
        ArrayAdapter<String> adapter = new ArrayAdapter<String>(MainActivity.this,  android.R.layout.simple_list_item_1, Subject);
        lv.setAdapter(adapter);
    }


}