Home
last modified time | relevance | path

Searched refs:rootLayout (Results 1 – 5 of 5) sorted by relevance

/packages/apps/TV/tuner/tests/unittests/javatests/com/android/tv/tuner/layout/tests/
DScaledLayoutTest.java55 FrameLayout rootLayout = mActivityRule.getActivity().findViewById(R.id.root_layout); in testScaledLayout_layoutInXml() local
56 assertNotNull(rootLayout); in testScaledLayout_layoutInXml()
57 ScaledLayout scaledLayout = (ScaledLayout) rootLayout.getChildAt(0); in testScaledLayout_layoutInXml()
89 FrameLayout rootLayout = mActivityRule.getActivity().findViewById(R.id.root_layout); in testScaledLayout_layoutThroughCode() local
90 assertNotNull(rootLayout); in testScaledLayout_layoutThroughCode()
91 ScaledLayout scaledLayout = (ScaledLayout) rootLayout.getChildAt(1); in testScaledLayout_layoutThroughCode()
123 FrameLayout rootLayout = mActivityRule.getActivity().findViewById(R.id.root_layout); in testScaledLayout_bounceY() local
124 assertNotNull(rootLayout); in testScaledLayout_bounceY()
125 ScaledLayout scaledLayout = (ScaledLayout) rootLayout.getChildAt(2); in testScaledLayout_bounceY()
/packages/apps/Dialer/java/com/android/contacts/common/util/
DContactListViewUtils.java56 Resources resources, final ListView listView, final View rootLayout) { in applyCardPaddingToView() argument
62 rootLayout.setBackgroundResource(0); in applyCardPaddingToView()
64 View mCardView = rootLayout.findViewById(R.id.list_card); in applyCardPaddingToView()
84 listView, rootLayout.getWidth(), listSpaceWeight, listViewWeight); in applyCardPaddingToView()
/packages/apps/Dialer/java/com/android/dialer/main/impl/
DOldMainActivityPeer.java1177 private final View rootLayout; field in OldMainActivityPeer.MainOldSpeedDialFragmentHost
1187 View rootLayout, in MainOldSpeedDialFragmentHost() argument
1194 this.rootLayout = rootLayout; in MainOldSpeedDialFragmentHost()
1206 rootLayout.setOnDragListener( in setDragDropController()
1264 private final ViewGroup rootLayout; field in OldMainActivityPeer.MainSpeedDialFragmentHost
1270 ViewGroup rootLayout, in MainSpeedDialFragmentHost() argument
1274 this.rootLayout = rootLayout; in MainSpeedDialFragmentHost()
1286 rootLayout.setClipChildren(!start); in dragFavorite()
/packages/apps/Dialer/java/com/android/dialer/speeddial/
DSpeedDialFragment.java140 View rootLayout = inflater.inflate(R.layout.fragment_speed_dial, container, false); in onCreateView() local
141 emptyContentView = rootLayout.findViewById(R.id.speed_dial_empty_content_view); in onCreateView()
166 RecyclerView recyclerView = rootLayout.findViewById(R.id.speed_dial_recycler_view); in onCreateView()
175 return rootLayout; in onCreateView()
/packages/apps/Gallery/src/com/android/camera/
DViewImage.java650 setupOnScreenControls(findViewById(R.id.rootLayout), mImageView); in onCreate()