Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/panel/
DPanelFragment.java86 View mLayoutView; field in PanelFragment
114 if (mLayoutView.getHeight() > mMaxHeight) {
115 final ViewGroup.LayoutParams params = mLayoutView.getLayoutParams();
117 mLayoutView.setLayoutParams(params);
139 mLayoutView = inflater.inflate(R.layout.panel_layout, container, false); in onCreateView()
140 mLayoutView.getViewTreeObserver() in onCreateView()
144 return mLayoutView; in onCreateView()
156 final View panelContent = mLayoutView.findViewById(R.id.panel_container); in updatePanelWithAnimation()
157 final AnimatorSet animatorSet = buildAnimatorSet(mLayoutView, in updatePanelWithAnimation()
176 if (mLayoutView == null) { in createPanelContent()
[all …]
/packages/apps/Settings/tests/robotests/src/com/android/settings/panel/
DPanelFragmentTest.java184 final View titleView = panelFragment.mLayoutView.findViewById(R.id.panel_title); in supportIcon_displayIconHeaderLayout()
185 final LinearLayout panelHeader = panelFragment.mLayoutView.findViewById(R.id.panel_header); in supportIcon_displayIconHeaderLayout()
186 final TextView headerTitle = panelFragment.mLayoutView.findViewById(R.id.header_title); in supportIcon_displayIconHeaderLayout()
187 final TextView headerSubtitle = panelFragment.mLayoutView.findViewById( in supportIcon_displayIconHeaderLayout()
208 final View titleView = panelFragment.mLayoutView.findViewById(R.id.panel_title); in notSupportIcon_displayDefaultHeaderLayout()
209 final View panelHeader = panelFragment.mLayoutView.findViewById(R.id.panel_header); in notSupportIcon_displayDefaultHeaderLayout()
226 final View footerDivider = panelFragment.mLayoutView.findViewById(R.id.footer_divider); in sliderLargeIconPanelType_displayFooterDivider()
242 final View footerDivider = panelFragment.mLayoutView.findViewById(R.id.footer_divider); in sliderPanelType_notDisplayFooterDivider()
258 final View footerDivider = panelFragment.mLayoutView.findViewById(R.id.footer_divider); in defaultPanelType_notDisplayFooterDivider()
276 final TextView headerTitle = panelFragment.mLayoutView.findViewById(R.id.header_title); in onHeaderChanged_updateHeader_verifyTitle()
[all …]
/packages/apps/Settings/src/com/android/settings/wifi/addappnetworks/
DAddAppNetworksFragment.java112 View mLayoutView; field in AddAppNetworksFragment
218 mLayoutView = view; in onViewCreated()
272 mLayoutView.findViewById(R.id.multiple_networks).setVisibility(View.GONE); in createContent()
273 mLayoutView.findViewById(R.id.single_network).setVisibility(View.VISIBLE); in createContent()
278 ((TextView) mLayoutView.findViewById(R.id.single_ssid)).setText( in createContent()
287 mLayoutView.findViewById(R.id.single_network).setVisibility(View.GONE); in createContent()
288 mLayoutView.findViewById(R.id.multiple_networks).setVisibility(View.VISIBLE); in createContent()
292 final ListView uiNetworkListView = mLayoutView.findViewById(R.id.config_list); in createContent()
424 ((ImageView) mLayoutView.findViewById(R.id.signal_strength)).setImageDrawable(wifiIconDark); in updateSingleNetworkSignalIcon()
456 ((ImageView) mLayoutView.findViewById(R.id.app_icon)).setImageDrawable(drawable); in assignAppIcon()
[all …]
/packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/addappnetworks/
DAddAppNetworksFragmentTest.java132 TextView ssidView = (TextView) mAddAppNetworksFragment.mLayoutView.findViewById( in requestOneNetwork_shouldShowCorrectSSID()