Home
last modified time | relevance | path

Searched refs:mRoot (Results 1 – 4 of 4) sorted by relevance

/development/samples/ApiDemos/tests/src/com/example/android/apis/view/
DFocus2AndroidTest.java59 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/
DExternalStorage.java53 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()
/development/samples/IntentPlayground/src/com/example/android/intentplayground/
DShowcaseFragment.java43 private ViewGroup mRoot; field in ShowcaseFragment
68 mRoot = container; in onCreateView()
158 View target = mRoot.findViewById(current.targetViewRes); in executeStep()
160 mRoot.findViewById(current.highlightTargetViewRes) : target; in executeStep()
180 mRoot.setBackground(null); // Clear root background in clearHighlight()
191 mRoot.setBackground(res.getDrawable(R.drawable.shade, null /* theme */)); in highlightView()
DBaseActivity.java213 Node mRoot = Node.newRootNode(); in setupTaskPreset() local
235 mRoot.addChild(singleTask).addChild(docLaunchAlways).addChild(docLaunchInto) in setupTaskPreset()
237 return new TestBase(this, mRoot); in setupTaskPreset()