3

いくつかのビューを表示したいのですがListView、それぞれに対応するタイトルがLinearLayout

私はLinearLayout、ビューを膨らませてタイトルを塗りつぶし、そのビューをループ内にListView追加しましたが、タイトルとリストが1つだけ表示されます(最初のもの)。LinearLayout

タイトルとリストビューを含むビューを、forループが繰り返される回数だけ表示したいと思います。

コードをお見せしましょう:

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

//fragment_history: a layout with a LinearLayout inside called "main"

      View fragmentHistory = inflater.inflate(R.layout.fragment_history, container, false);

//I want to show a date, and all the transactions accomplished that date. With this two arrays, I pretend to loop by day, show the date as title and show the transactions of that day in the listview.

        allExpenses = dataExpenses.getAllExpenses();
        allDatesExpenses = dataExpenses.getAllDates();

// The LinearLayout inside the fragmentHistory layout 

        LinearLayout mainLayout = (LinearLayout) fragmentHistory.findViewById(R.id.main);       
        LayoutInflater layoutInflater = (LayoutInflater) this.context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

// I made a for loop, and I have two different dates. Two transactions in the first date, and one in the second day. But only the two transactions are been shown.

        for(int x = 0, y = allDatesExpenses.size(); x < y; x++){

            View view = layoutInflater.inflate(R.layout.layout_title, null);        

            Expense expense = allDatesExpenses.get(x);

            TextView text = Font.useHandelGotic(this.context, (TextView) view.findViewById(R.id.textViewTitleDate)) ;
    text.setText(expense.getDateExpense());  

            ListView listview = (ListView) view.findViewById(android.R.id.list);

            ArrayList<Expense> expensesByDate = (ArrayList<Expense>) dataExpenses.getExpensesByDate(expense.getDateExpense());
            listview.setDivider(null);
            listview.setAdapter(new AdapterTransaction(this.context, expensesByDate));

            mainLayout.addView(view);

        }       
        return fragmentHistory;
    }
4

1 に答える 1

3

あなたが提供した情報から、あなたは水平(デフォルト)に設定されていると思いますLinearLayout、それであなたのすべてのタイトル/リストビューは実際に追加されていますが、それらが横にないのであなたはそれらを見ることができません。追加して修正します

android:orientation="vertical"

LinearLayoutXMLタグに。

それが問題ではない場合は、適切なXMLレイアウトを投稿してください。

于 2012-11-17T18:36:17.953 に答える