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.java89 View mLayoutView; field in PanelFragment
120 if (mLayoutView.getHeight() > mMaxHeight) {
121 final ViewGroup.LayoutParams params = mLayoutView.getLayoutParams();
123 mLayoutView.setLayoutParams(params);
146 mLayoutView = inflater.inflate(R.layout.panel_layout, container, false); in onCreateView()
147 mLayoutView.getViewTreeObserver() in onCreateView()
152 return mLayoutView; in onCreateView()
165 final View panelContent = mLayoutView.findViewById(R.id.panel_container); in updatePanelWithAnimation()
166 final AnimatorSet animatorSet = buildAnimatorSet(mLayoutView, in updatePanelWithAnimation()
193 if (mLayoutView == null) { in createPanelContent()
[all …]
/packages/apps/Settings/tests/robotests/src/com/android/settings/panel/
DPanelFragmentTest.java182 final View titleView = panelFragment.mLayoutView.findViewById(R.id.panel_title); in supportIcon_displayIconHeaderLayout()
183 final LinearLayout panelHeader = panelFragment.mLayoutView.findViewById(R.id.panel_header); in supportIcon_displayIconHeaderLayout()
184 final TextView headerTitle = panelFragment.mLayoutView.findViewById(R.id.header_title); in supportIcon_displayIconHeaderLayout()
185 final TextView headerSubtitle = panelFragment.mLayoutView.findViewById( in supportIcon_displayIconHeaderLayout()
206 final View titleView = panelFragment.mLayoutView.findViewById(R.id.panel_title); in notSupportIcon_displayDefaultHeaderLayout()
207 final View panelHeader = panelFragment.mLayoutView.findViewById(R.id.panel_header); in notSupportIcon_displayDefaultHeaderLayout()
226 final TextView headerTitle = panelFragment.mLayoutView.findViewById(R.id.header_title); in onHeaderChanged_updateHeader_verifyTitle()
227 final TextView headerSubtitle = panelFragment.mLayoutView.findViewById( in onHeaderChanged_updateHeader_verifyTitle()
267 final Button seeMoreButton = panelFragment.mLayoutView.findViewById(R.id.see_more); in onCustomizedButtonStateChanged_isCustomized_showCustomizedTitle()
290 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.java158 TextView ssidView = (TextView) mAddAppNetworksFragment.mLayoutView.findViewById( in requestOneNetwork_shouldShowCorrectSSID()
308 final TextView textView = (TextView) mAddAppNetworksFragment.mLayoutView.findViewById( in status_withOneNetworkSave_shouldShowOneNetworkSaving()
325 final TextView textView = (TextView) mAddAppNetworksFragment.mLayoutView.findViewById( in status_withTwoNetworksSave_shouldShowMultipleNetworksSaving()
342 final TextView textView = (TextView) mAddAppNetworksFragment.mLayoutView.findViewById( in status_withOneNetworkSaved_shouldShowOneNetworkSaved()
359 final TextView textView = (TextView) mAddAppNetworksFragment.mLayoutView.findViewById( in status_withTwoNetworksSaved_shouldShowMultipleNetworksSaved()
375 final TextView textView = (TextView) mAddAppNetworksFragment.mLayoutView.findViewById( in status_withOneNetworkSaveFailed_shouldShowOneNetworkFailed()
392 final TextView textView = (TextView) mAddAppNetworksFragment.mLayoutView.findViewById( in status_withTwoNetworksSaveFailed_shouldShowMultipleNetworksFailed()