简体   繁体   English

如何在ListView中将数据设置为自定义行TextView

[英]How to set data to custom row TextView in ListView

I want to show data which i get from server, in my custom ListView 我想在自定义ListView中显示从服务器获取的数据

This is my row_category.xml for custom row 这是我的自定义行的row_category.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="5dp"
        android:src="@drawable/messenger_bubble_large_blue" />

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_marginLeft="10dp" >

        <TextView
            android:id="@+id/txtTitle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="#ffffff"
            android:text="Large Text"
            android:textAppearance="?android:attr/textAppearanceLarge" />

    </LinearLayout>

</LinearLayout>

My CategoryAdapter.java 我的CategoryAdapter.java

public class CategoryAdapter extends ArrayAdapter{
    private LayoutInflater inflater;

    public CategoryAdapter(Activity activity, ArrayList<Category> items){
        super(activity, R.layout.row_category, items);
        inflater = activity.getWindow().getLayoutInflater();
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent){
        return inflater.inflate(R.layout.row_category, parent, false);
    }
}

My Category.java class 我的Category.java类

public class Category {
    private String name,url;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }
}

and my mainactivity with listview 和我与listview的主要活动

private ListView categorylist;
    private CategoryAdapter categoryitemadapter;
    private Intent intent;
    JSONArray jArray;
    ArrayList<Category> list;
    String uri="http://demopurpose.com/Quiz/API/";
    InputStream is;
    JSONObject json_data;
    int len;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_categories);

         list = new ArrayList<Category>();
         categoryitemadapter = new CategoryAdapter(this, list);
         getdata();
         setListAdapter(categoryitemadapter);
         categoryitemadapter.notifyDataSetChanged();
    }
    public void getdata(){
        Thread t = new Thread() {
            public void run() {
                getdeals();
            }
            };
        t.start();

    }

    public void getdeals() {

        String result = "";

        try{
                HttpClient httpclient = new DefaultHttpClient();
                HttpPost httppost = new HttpPost(uri+"getcategories.php");
                HttpResponse response = httpclient.execute(httppost);
                HttpEntity entity = response.getEntity();
                is = entity.getContent();
        }
        catch(Exception e){
                Log.e("log_tag", "Error in http connection "+e.toString());
        }
        //convert response to string
        try{
                BufferedReader reader = new BufferedReader(new InputStreamReader(is,"iso-8859-1"),8);
                StringBuilder sb = new StringBuilder();
                String line = null;
                while ((line = reader.readLine()) != null) {
                        sb.append(line + "\n");
                }
                is.close();

                result=sb.toString();
                Log.i("result...",result);
        }catch(Exception e){
                Log.e("log_tag", "Error converting result "+e.toString());
        }

        //parse json data
        try{
                jArray = new JSONArray(result);
                //Log.i("result", result);
                len=jArray.length();


                        runOnUiThread(new Runnable() {
                            public void run() {
                                try{
                                    Category c = new Category();

                                    for(int i=0;i<jArray.length();i++){
                                        json_data = jArray.getJSONObject(i);
                                        c.setName(json_data.getString("name"));
                                        list.add(c);
                                        categoryitemadapter.notifyDataSetChanged();
                                    }
                                }
                                catch(JSONException je){
                                    je.printStackTrace();
                                }
                            }
                        });

        }
        catch(JSONException e){
                Log.e("log_tag", "Error parsing data "+e.toString());
        }
   }

It is generating list with 3 items as I get it from response 当我从响应中获得它时它正在生成具有3项的列表 在此处输入图片说明 Now, how can i change the text of each ListView row. 现在,我如何更改每个ListView行的文本。

In your CategoryAdapter.java class, change your getView function to: CategoryAdapter.java类中,将getView函数更改为:

@Override
public View getView(int position, View convertView, ViewGroup parent){
    View v = inflater.inflate(R.layout.row_category, parent, false);
    TextView txtTitle = (TextView) v.findViewById(R.id.txtTitle);
    txtTitle.setText("The text you want");
    return v;
}

EDIT : To set the text from a List<String> 编辑 :要设置一个文本从List<String>

Change your CategoryAdapter to: 将您的CategoryAdapter更改为:

public class CategoryAdapter extends ArrayAdapter{
    private LayoutInflater inflater;
    private List<String> titleList;

    public CategoryAdapter(Activity activity, ArrayList<Category> items, List<String> titleList){
        super(activity, R.layout.row_category, items);
        inflater = activity.getWindow().getLayoutInflater();
        this.titleList = titleList
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent){
        View v = convertView
        if(v == null)
            v = inflater.inflate(R.layout.row_category, parent, false);
        TextView txtTitle = (TextView) v.findViewById(R.id.txtTitle);
        txtTitle.setText(titleList.get(position));
        return v;
    }
}

And how to get List<String> from a Http request, now that's a whole new question. 以及如何从Http请求中获取List<String> ,这是一个全新的问题。

You should do that in adapter getview 您应该在适配器getview中执行此操作

@Override
public View getView(int position, View convertView, ViewGroup parent){
    View row = convertView;
            if (row == null) {
                LayoutInflater inflater = (LayoutInflater) this.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
                row = inflater.inflate(R.layout.row_category, parent, false);
            }
            TextView rowText = (TextView) row.findViewById(R.id.txtTitle);

            rowText.setText("Custom Text");

            return row;
        }

In getView() method of your adapter declare and initialise textview and set text to it. 在适配器的getView()方法中,声明并初始化textview并将其设置为文本。 and change in your constructor also 并更改您的构造函数

     ArrayList<Category> items;

     public CategoryAdapter(Activity activity, ArrayList<Category> items){
        super(activity, R.layout.row_category, items);
        inflater = activity.getWindow().getLayoutInflater();
        this.items = items;
    }

    @Override
        public View getView(int position, View convertView, ViewGroup parent){
          if (convertView == null) {
                convertView = (View) inflater.inflate(R.layout.row_category, parent, false);
          }
          TextView textView = (TextView) convertView
                    .findViewById(R.id.txtTitle);
          textView.setText(items.get(position).getName());
         return convertView;
        }

You'll need to improve your ArrayAdapter . 您需要改进ArrayAdapter

Currently you're not setting the data to the TextView . 目前,您尚未将数据设置为TextView Try the following, I didn't test it but it should work. 请尝试以下操作,但我没有对其进行测试,但是它应该可以工作。

 public class CategoryAdapter extends ArrayAdapter {

    private LayoutInflater inflater;

    public CategoryAdapter(Activity activity, ArrayList<Category> items){
        super(activity, R.layout.row_category, items);

        inflater = activity.getWindow().getLayoutInflater();
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent){

        ViewHolder viewHolder;

        if (convertView == null) {

            viewHolder = new ViewHolder();

            convertView = inflater.inflate(R.layout.row_category, parent, false);
            viewHolder.textTile = (TextView) convertView.findViewById(R.id.txtTitle);

            convertView.setTag(viewHolder);
        } else {
            viewHolder = (ViewHolder) convertView.getTag();
        }

        Category category = (Category) getItem(position);
        viewHolder.textTile.setText(category.getName());

        return convertView;
    }

    public void refresh(ArrayList<Category> items) {
        clear();
        addAll(items);
        notifyDataSetChanged();
    }

    private class ViewHolder {
        public TextView textTile;
    }
}

Change this loop in your getdeals method to look like this 在您的getdeals方法中将此循环更改为如下所示

try {
    Category c = new Category();

    for(int i=0;i<jArray.length();i++){
        json_data = jArray.getJSONObject(i);
        c.setName(json_data.getString("name"));
        list.add(c);
    }

    categoryitemadapter.refresh(list);
} catch(JSONException je){
    je.printStackTrace();
}

NOTE 注意

You should consider using the RecyclerView . 您应该考虑使用RecyclerView It's a lot more powerful than ListView and will give you more control over animations of individual list items. 它比ListView强大得多,可以让您更好地控制单个列表项的动画。 You can read up on it here if you'd like 如果您愿意,可以在这里阅读

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何在listView的自定义行视图中设置textView - How to set textView in custom row view of listView 如何在每行的自定义列表视图中更改文本视图的背景 - How to change background of a textview in a custom listview for each row 如何在自定义ListView行中相应地对齐ImageView和TextView? - How to align accordingly an ImageView and a TextView in a custom ListView row? 如何在ListVIew行项目的TextView中设置值? - How can set value in TextView in ListVIew row item? 如何在依赖于TextView文本的自定义ListView中设置ImageView? - How can I set a ImageView in a custom ListView that depends on the text of the TextView? 如何将自定义字体设置为ListView项中的TextView之一? - how to set custom font to one of the TextView's in ListView item? Android ListView 与自定义行(RadioButton 和 3 TextView) - Android ListView with custom row (RadioButton and 3 TextView) 以编程方式将TextView添加到Listview自定义行 - Add TextView programatically to Listview custom row 在列表视图Android中的特定行中设置textview值 - Set textview value in particular row in listview Android 如何在Android中动态设置ListView连续n个TextView中的TextView宽度? - How to set TextView width for n number of TextView in a row dynamically of ListView in android?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM