Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/panel/
DPanelFragment.java90 View mLayoutView; field in PanelFragment
121 if (mLayoutView.getHeight() > mMaxHeight) {
122 final ViewGroup.LayoutParams params = mLayoutView.getLayoutParams();
124 mLayoutView.setLayoutParams(params);
147 mLayoutView = inflater.inflate(R.layout.panel_layout, container, false); in onCreateView()
148 mLayoutView.getViewTreeObserver() in onCreateView()
153 return mLayoutView; in onCreateView()
166 final View panelContent = mLayoutView.findViewById(R.id.panel_container); in updatePanelWithAnimation()
167 final AnimatorSet animatorSet = buildAnimatorSet(mLayoutView, in updatePanelWithAnimation()
194 if (mLayoutView == null) { in createPanelContent()
[all …]
/packages/apps/Settings/tests/robotests/src/com/android/settings/panel/
DPanelFragmentTest.java189 final View titleView = panelFragment.mLayoutView.findViewById(R.id.panel_title); in supportIcon_displayIconHeaderLayout()
190 final LinearLayout panelHeader = panelFragment.mLayoutView.findViewById(R.id.panel_header); in supportIcon_displayIconHeaderLayout()
191 final TextView headerTitle = panelFragment.mLayoutView.findViewById(R.id.header_title); in supportIcon_displayIconHeaderLayout()
192 final TextView headerSubtitle = panelFragment.mLayoutView.findViewById( in supportIcon_displayIconHeaderLayout()
213 final View titleView = panelFragment.mLayoutView.findViewById(R.id.panel_title); in notSupportIcon_displayDefaultHeaderLayout()
214 final View panelHeader = panelFragment.mLayoutView.findViewById(R.id.panel_header); in notSupportIcon_displayDefaultHeaderLayout()
233 final TextView headerTitle = panelFragment.mLayoutView.findViewById(R.id.header_title); in onHeaderChanged_updateHeader_verifyTitle()
234 final TextView headerSubtitle = panelFragment.mLayoutView.findViewById( in onHeaderChanged_updateHeader_verifyTitle()
274 final Button seeMoreButton = panelFragment.mLayoutView.findViewById(R.id.see_more); in onCustomizedButtonStateChanged_isCustomized_showCustomizedTitle()
297 final ProgressBar progressBar = panelFragment.mLayoutView.findViewById(R.id.progress_bar); in onProgressBarVisibleChanged_isProgressBarVisible_showProgressBar()
/packages/apps/Settings/src/com/android/settings/wifi/addappnetworks/
DAddAppNetworksFragment.java113 View mLayoutView; field in AddAppNetworksFragment
219 mLayoutView = view; in onViewCreated()
273 mLayoutView.findViewById(R.id.multiple_networks).setVisibility(View.GONE); in createContent()
274 mLayoutView.findViewById(R.id.single_network).setVisibility(View.VISIBLE); in createContent()
279 ((TextView) mLayoutView.findViewById(R.id.single_ssid)).setText( in createContent()
288 mLayoutView.findViewById(R.id.single_network).setVisibility(View.GONE); in createContent()
289 mLayoutView.findViewById(R.id.multiple_networks).setVisibility(View.VISIBLE); in createContent()
293 final ListView uiNetworkListView = mLayoutView.findViewById(R.id.config_list); in createContent()
427 ((ImageView) mLayoutView.findViewById(R.id.signal_strength)).setImageDrawable(wifiIconDark); in updateSingleNetworkSignalIcon()
459 ((ImageView) mLayoutView.findViewById(R.id.app_icon)).setImageDrawable(drawable); in assignAppIcon()
[all …]
/packages/apps/Settings/src/com/android/settings/notification/app/
DNotificationSettings.java94 private ViewGroup mLayoutView; field in NotificationSettings
102 if (mLayoutView != null) {
103 mLayoutView.getViewTreeObserver().removeOnGlobalLayoutListener(this);
211 mLayoutView = getActivity().findViewById(R.id.main_content); in animatePanel()
212 mLayoutView.getViewTreeObserver().addOnGlobalLayoutListener(mOnGlobalLayoutListener); in animatePanel()
224 final AnimatorSet animatorSet = buildAnimatorSet(mLayoutView, in animateIn()
225 mLayoutView.getHeight() /* startY */, 0.0f /* endY */, in animateIn()
/packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/addappnetworks/
DAddAppNetworksFragmentTest.java160 TextView ssidView = (TextView) mAddAppNetworksFragment.mLayoutView.findViewById( in requestOneNetwork_shouldShowCorrectSSID()
310 final TextView textView = (TextView) mAddAppNetworksFragment.mLayoutView.findViewById( in status_withOneNetworkSave_shouldShowOneNetworkSaving()
327 final TextView textView = (TextView) mAddAppNetworksFragment.mLayoutView.findViewById( in status_withTwoNetworksSave_shouldShowMultipleNetworksSaving()
344 final TextView textView = (TextView) mAddAppNetworksFragment.mLayoutView.findViewById( in status_withOneNetworkSaved_shouldShowOneNetworkSaved()
361 final TextView textView = (TextView) mAddAppNetworksFragment.mLayoutView.findViewById( in status_withTwoNetworksSaved_shouldShowMultipleNetworksSaved()
377 final TextView textView = (TextView) mAddAppNetworksFragment.mLayoutView.findViewById( in status_withOneNetworkSaveFailed_shouldShowOneNetworkFailed()
394 final TextView textView = (TextView) mAddAppNetworksFragment.mLayoutView.findViewById( in status_withTwoNetworksSaveFailed_shouldShowMultipleNetworksFailed()