ListView,图片,两行内容

来源:互联网 发布:淘宝客佣金 购物车 编辑:程序博客网 时间:2024/04/29 09:35

Fruit.java:

package com.example.listview;


public class Fruit {
private String name;
private String yangzi;
private int imageId;
public Fruit(String name,int imageId, String yangzi){
this.name=name;
this.yangzi=yangzi;
this.imageId=imageId;
}
public String getName() {
return name;
}
public String getYangzi() {
return yangzi;
}
public int getImageId() {
return imageId;
}

}

FruitAdapter.java:

package com.example.listview;


public class Fruit {
private String name;
private String yangzi;
private int imageId;
public Fruit(String name,int imageId, String yangzi){
this.name=name;
this.yangzi=yangzi;
this.imageId=imageId;
}
public String getName() {
return name;
}
public String getYangzi() {
return yangzi;
}
public int getImageId() {
return imageId;
}

}

MainActivity.java:

package com.example.listview;


import java.util.ArrayList;
import java.util.List;


import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.widget.ListView;


public class MainActivity extends Activity {
private List<Fruit> fruitList=new ArrayList<Fruit>();
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);    
        initFruits();
    FruitAdapter adapter=new FruitAdapter(MainActivity.this, R.layout.fruit_item, fruitList);
    ListView listView=(ListView) findViewById(R.id.list_view);
    listView.setAdapter(adapter);
    }

    private void initFruits() {
Fruit apple=new Fruit("Apple",R.drawable.apple, "djsf");
fruitList.add(apple);
Fruit banana=new Fruit("Banana",R.drawable.banana,"jkhf");
fruitList.add(banana);
Fruit pineapple=new Fruit("Pineapple",R.drawable.pineapple,"ijij");
fruitList.add(pineapple);
}
}

activity_main XML

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal">


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


    </ListView>


</RelativeLayout>

fruit_item:xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    
    <ImageView
        android:id="@+id/fruit_image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>
    
    <TextView
        android:id="@+id/fruit_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_toRightOf="@+id/fruit_image"
        android:layout_marginLeft="10dip"/>
    <TextView
        android:id="@+id/shuzi"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@+id/fruit_image"
        android:layout_below="@+id/fruit_name"/>
    


</RelativeLayout>

0 0