Searched refs:mRoot (Results 1 – 2 of 2) sorted by relevance
/development/samples/ApiDemos/tests/src/com/example/android/apis/view/ |
D | Focus2AndroidTest.java | 59 private ViewGroup mRoot; field in Focus2AndroidTest 74 mRoot = (ViewGroup) inflater.inflate(R.layout.focus_2, null); in setUp() 77 mRoot.measure(500, 500); in setUp() 78 mRoot.layout(0, 0, 500, 500); in setUp() 80 mLeftButton = (Button) mRoot.findViewById(R.id.leftButton); in setUp() 81 mCenterButton = (Button) mRoot.findViewById(R.id.centerButton); in setUp() 82 mRightButton = (Button) mRoot.findViewById(R.id.rightButton); in setUp() 104 mFocusFinder.findNextFocus(mRoot, mLeftButton, View.FOCUS_RIGHT)); in testGoingRightFromLeftButtonJumpsOverCenterToRight() 111 mFocusFinder.findNextFocus(mRoot, mRightButton, View.FOCUS_LEFT)); in testGoingLeftFromRightButtonGoesToCenter()
|
/development/samples/ApiDemos/src/com/example/android/apis/content/ |
D | ExternalStorage.java | 53 View mRoot; field in ExternalStorage.Item 84 mLayout.addView(mExternalStoragePublicPicture.mRoot); in onCreate() 100 mLayout.addView(mExternalStoragePrivatePicture.mRoot); in onCreate() 116 mLayout.addView(mExternalStoragePrivateFile.mRoot); in onCreate() 363 item.mRoot = inflater.inflate(R.layout.external_storage_item, null); in createStorageControls() 364 TextView tv = (TextView)item.mRoot.findViewById(R.id.label); in createStorageControls() 367 tv = (TextView)item.mRoot.findViewById(R.id.path); in createStorageControls() 370 item.mCreate = (Button)item.mRoot.findViewById(R.id.create); in createStorageControls() 372 item.mDelete = (Button)item.mRoot.findViewById(R.id.delete); in createStorageControls()
|