Lines Matching refs:Row
49 private List<Row> mRows;
58 mRows = new ArrayList<SampleGridPagerAdapter.Row>(); in SampleGridPagerAdapter()
60 mRows.add(new Row(cardFragment(R.string.welcome_title, R.string.welcome_text))); in SampleGridPagerAdapter()
61 mRows.add(new Row(cardFragment(R.string.about_title, R.string.about_text))); in SampleGridPagerAdapter()
62 mRows.add(new Row( in SampleGridPagerAdapter()
65 mRows.add(new Row( in SampleGridPagerAdapter()
68 mRows.add(new Row(new CustomFragment())); in SampleGridPagerAdapter()
69 mRows.add(new Row(cardFragment(R.string.dismiss_title, R.string.dismiss_text))); in SampleGridPagerAdapter()
136 private class Row { class in SampleGridPagerAdapter
139 public Row(Fragment... fragments) { in Row() method in SampleGridPagerAdapter.Row
160 Row adapterRow = mRows.get(row); in getFragment()