HomeSort by relevance Sort by last modified time
    Searched refs:mTileLayout (Results 1 - 3 of 3) sorted by null

  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/
TileLayoutTest.java 48 private TileLayout mTileLayout;
53 mTileLayout = new TileLayout(mContext);
70 mTileLayout.addTile(tileRecord);
71 verify(tileRecord.tile, times(1)).setListening(mTileLayout, false);
77 mTileLayout.addTile(tileRecord);
78 mTileLayout.setListening(true);
79 verify(tileRecord.tile, times(1)).setListening(mTileLayout, true);
85 mTileLayout.addTile(tileRecord);
86 mTileLayout.setListening(false);
93 mTileLayout.setListening(true)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QSPanel.java 82 protected QSTileLayout mTileLayout;
104 mTileLayout = (QSTileLayout) LayoutInflater.from(mContext).inflate(
106 mTileLayout.setListening(mListening);
107 addView((View) mTileLayout);
113 ((PagedTileLayout) mTileLayout).setPageIndicator(mPanelPageIndicator);
115 (PagedTileLayout) mTileLayout);
252 if (mTileLayout instanceof PagedTileLayout) {
259 if (mTileLayout instanceof PagedTileLayout) {
273 ((PagedTileLayout) mTileLayout).setPageIndicator(
294 if (mTileLayout != null)
    [all...]
QuickQSPanel.java 56 if (mTileLayout != null) {
58 mTileLayout.removeTile(mRecords.get(i));
60 removeView((View) mTileLayout);
62 mTileLayout = new HeaderTileLayout(context);
63 mTileLayout.setListening(mListening);
64 addView((View) mTileLayout, 0 /* Between brightness and footer */);

Completed in 94 milliseconds