Searched refs:tab (Results 26 - 43 of 43) sorted by relevance

12

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKeyboard.java236 case CODE_TAB: return "tab";
/packages/apps/Browser/src/com/android/browser/
H A DNavigationBarTablet.java140 void updateNavigationState(Tab tab) { argument
141 if (tab != null) {
142 mBackButton.setImageResource(tab.canGoBack()
145 mForwardButton.setImageResource(tab.canGoForward()
153 public void onTabDataChanged(Tab tab) { argument
154 super.onTabDataChanged(tab);
155 showHideStar(tab);
311 private void showHideStar(Tab tab) { argument
313 if (tab != null && tab
[all...]
H A DDeviceAccountLogin.java50 public DeviceAccountLogin(Activity activity, WebView view, Tab tab, argument
54 mTab = tab;
H A DSnapshotBar.java186 public void onTabDataChanged(Tab tab) { argument
187 if (!tab.isSnapshot()) return;
188 SnapshotTab snapshot = (SnapshotTab) tab;
196 setFavicon(tab.getFavicon());
H A DAutologinBar.java92 public void updateAutoLogin(Tab tab, boolean animate) { argument
93 DeviceAccountLogin login = tab.getDeviceAccountLogin();
H A DNavigationBarPhone.java124 * @param title String to display. If null, the new tab string will be
254 public void onTabDataChanged(Tab tab) { argument
255 super.onTabDataChanged(tab);
256 mIncognitoIcon.setVisibility(tab.isPrivateBrowsingEnabled()
H A DIntentHandler.java68 // When a tab is closed on exit, the current tab index is set to -1.
69 // Reset before proceed as Browser requires the current tab to be set.
71 // Try to reset the tab in case the index was incorrect.
117 * 0) If this is a javascript: URI, *always* open a new tab
118 * 1) If the URL is already opened, switch to that tab
119 * 2-phone) Reuse tab with same appId
120 * 2-tablet) Open new tab
150 // No matching application tab, try to find a regular tab
[all...]
H A DDownloadTouchIcon.java61 public DownloadTouchIcon(Tab tab, Context ctx, ContentResolver cr, WebView view) { argument
62 mTab = tab;
H A DNavigationBarBase.java257 public void onTabDataChanged(Tab tab) { argument
/packages/apps/Settings/src/com/android/settings/applications/
H A DManageApplications.java125 void onItemClick(ManageApplications.TabInfo tab, AdapterView<?> parent, argument
472 TabInfo tab = mTabs.get(position);
473 View root = tab.build(mInflater, mContentContainer, mRootView);
555 public ApplicationsAdapter(ApplicationsState state, TabInfo tab, int filterMode) { argument
558 mTab = tab;
559 mContext = tab.mOwner.getActivity();
851 TabInfo tab = new TabInfo(this, mApplicationsState,
854 mTabs.add(tab);
857 tab = new TabInfo(this, mApplicationsState,
860 mTabs.add(tab);
1185 onItemClick(TabInfo tab, AdapterView<?> parent, View view, int position, long id) argument
[all...]
/packages/apps/Settings/src/com/android/settings/
H A DTrustedCredentialsSettings.java154 private void addTab(Tab tab) { argument
155 TabHost.TabSpec systemSpec = mTabHost.newTabSpec(tab.mTag)
156 .setIndicator(getActivity().getString(tab.mLabel))
157 .setContent(tab.mView);
160 ListView lv = (ListView) mTabHost.findViewById(tab.mList);
161 final TrustedCertificateAdapter adapter = new TrustedCertificateAdapter(tab);
173 private TrustedCertificateAdapter(Tab tab) { argument
174 mTab = tab;
275 Tab tab,
280 mTab = tab;
273 CertHolder(TrustedCertificateStore store, TrustedCertificateAdapter adapter, Tab tab, String alias, X509Certificate x509Cert) argument
[all...]
/packages/apps/Browser/tests/src/com/android/browser/
H A DPopularUrlsTest.java135 Tab tab = mController.getTabControl().getCurrentTab();
136 WebView webView = tab.getWebView();
441 Tab tab = mController.getTabControl().getCurrentTab();
442 WebView webView = tab.getWebView();
/packages/apps/Contacts/src/com/android/contacts/activities/
H A DPeopleActivity.java335 // Hide all tabs (the current tab will later be reshown once a tab is selected)
350 final String FAVORITE_TAG = "tab-pager-favorite";
351 final String ALL_TAG = "tab-pager-all";
352 final String GROUPS_TAG = "tab-pager-groups";
399 // Only favorites tab with two panes has a separate frequent fragment
503 // Current tab may have changed since the last onSaveInstanceState(). Make sure
504 // the actual contents match the tab.
664 int tab = mActionBarAdapter.getCurrentTab();
674 if (mTabPager.getCurrentItem() != tab) {
757 showEmptyStateForTab(int tab) argument
[all...]
/packages/apps/PackageInstaller/src/com/android/packageinstaller/
H A DPackageInstallerActivity.java102 * trick. Normally a tab host has a simple API for supplying a View or
103 * Intent that each tab will show. This is not sufficient for switching
104 * between pages. So instead we make the content part of the tab host
106 * view to show as the tab content. It listens to changes in tabs, and takes
108 * tab changes.
197 // Unfortunately when TabHost changes the current tab, it kindly
208 // Scroll the current tab into visibility if needed.
209 View tab = widget.getChildTabViewAt(position);
210 mTempRect.set(tab.getLeft(), tab
[all...]
/packages/apps/Contacts/src/com/android/contacts/detail/
H A DContactDetailTabCarousel.java58 /** Height in pixels of the shadow under the tab carousel */
77 /** Last Y coordinate of the carousel when the tab at the given index was selected */
135 // Retrieve the photo view for the "about" tab
140 // Retrieve the social update views for the "updates" tab
147 // behavior doesn't work. Note: the "About" tab doesn't need this
156 // Compute the width of a tab as a fraction of the screen width
178 // Set the child {@link LinearLayout} to be TAB_COUNT * the computed tab width so that the
219 /** When clicked, selects the corresponding tab. */
223 public TabClickListener(int tab) { argument
225 mTab = tab;
[all...]
/packages/apps/Calendar/src/com/android/calendar/
H A DAllInOneActivity.java410 // configureActionBar auto-selects the first tab you add, so we need to
1273 public void onTabSelected(Tab tab, FragmentTransaction ft) { argument
1275 if (tab == mDayTab && mCurrentView != ViewType.DAY) {
1277 } else if (tab == mWeekTab && mCurrentView != ViewType.WEEK) {
1279 } else if (tab == mMonthTab && mCurrentView != ViewType.MONTH) {
1281 } else if (tab == mAgendaTab && mCurrentView != ViewType.AGENDA) {
1284 Log.w(TAG, "TabSelected event from unknown tab: "
1285 + (tab == null ? "null" : tab.getText()));
1286 Log.w(TAG, "CurrentView:" + mCurrentView + " Tab:" + tab
1292 onTabReselected(Tab tab, FragmentTransaction ft) argument
1296 onTabUnselected(Tab tab, FragmentTransaction ft) argument
[all...]
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DTextCandidatesViewManager.java114 /** View for symbol tab */
137 /** Height of symbol keyboard tab */
309 /** Event listener for click a symbol tab */
1524 * Update tab status.
1526 * @param tab The tab view.
1527 * @param enabled The tab is enabled.
1528 * @param selected The tab is selected.
1530 private void updateTabStatus(TextView tab, boolean enabled, boolean selected) { argument
1531 tab
[all...]
/packages/apps/Email/src/com/android/email/activity/
H A DMessageViewFragmentBase.java134 // It is not really a tab, but looks like one of them.
196 /** Current tab */
200 * Used to restore the current tab after screen rotation.
365 // the attachment tab as system settings may have been updated that affect which
443 // an attachment or invite before loading it). We just remember the tab here.
444 // We'll make it current when the tab first becomes visible in updateTabs().
596 // Restore previously selected tab after rotation
604 * Set the current tab.
606 * @param tab any of {@link #TAB_MESSAGE}, {@link #TAB_ATTACHMENT} or {@link #TAB_INVITE}.
608 private void setCurrentTab(int tab) { argument
[all...]

Completed in 4714 milliseconds

12