如何填充LinearLayout的视图

时间:2016-10-16 21:40:03

标签: java android

我首先搜索将adapter设置为LinearLayout但是因为它不可能所以我使用它:

LinearLayout LinearLayout = (LinearLayout) findViewById(R.id.linearLayoutListeNote);
    //LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(android.widget.LinearLayout.LayoutParams.WRAP_CONTENT, android.widget.LinearLayout.LayoutParams.WRAP_CONTENT);
    LayoutInflater inflater = LayoutInflater.from(this);
    List<NoteObjet> notes = new ArrayList<NoteObjet>();
    notes.add(new NoteObjet(Color.BLACK, "Kevin"));
    notes.add(new NoteObjet(Color.BLUE, "Kevin"));
    notes.add(new NoteObjet(Color.GREEN, "Logan"));
    notes.add(new NoteObjet(Color.RED, "Mathieu"));
    notes.add(new NoteObjet(Color.GRAY, "Willy"));

    for (NoteObjet objet : notes){
        View view = inflater.inflate(R.layout.noteadapter, LinearLayout, false);
        // set item content in view
        LinearLayout.addView(view);
    }

但我不知道如何填写视图...... 我只想在水平this上找到scrolling这样的项目列表。 谢谢你的帮助。

0 个答案:

没有答案