OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tabView
(Results
1 - 17
of
17
) sorted by null
/frameworks/base/core/java/android/app/
TabActivity.java
149
View
tabView
= mTabHost.getCurrentTabView();
150
if (
tabView
!= null &&
tabView
instanceof TextView) {
151
((TextView)
tabView
).setText(title);
/external/chromium/chrome/browser/ui/cocoa/tabs/
tab_window_controller.h
37
@class
TabView
;
81
- (TabWindowController*)detachTabToNewWindow:(
TabView
*)
tabView
;
86
- (void)insertPlaceholderForTab:(
TabView
*)tab
114
- (BOOL)isTabFullyVisible:(
TabView
*)tab;
156
- (BOOL)isTabDraggable:(NSView*)
tabView
;
157
- (void)setTab:(NSView*)
tabView
isDraggable:(BOOL)draggable;
tab_controller.h
26
@class
TabView
;
85
// The view associated with this controller, pre-casted as a
TabView
86
- (
TabView
*)
tabView
;
88
// Closes the associated
TabView
by relaying the message to |target_| to
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ScrollingTabContainerView.java
207
final View
tabView
= mTabLayout.getChildAt(position);
213
final int scrollPos =
tabView
.getLeft() - (getWidth() -
tabView
.getWidth()) / 2;
238
private
TabView
createTabView(ActionBar.Tab tab, boolean forAdapter) {
239
final
TabView
tabView
= (
TabView
) mInflater.inflate(R.layout.abc_action_bar_tab, mTabLayout,
241
tabView
.attach(this, tab, forAdapter);
244
tabView
.setBackgroundDrawable(null);
245
tabView
.setLayoutParams(new ListView.LayoutParams(ListView.LayoutParams.FILL_PARENT
[
all
...]
ActionBarContainer.java
187
public void setTabContainer(ScrollingTabContainerView
tabView
) {
191
mTabContainer =
tabView
;
192
if (
tabView
!= null) {
193
addView(
tabView
);
194
final ViewGroup.LayoutParams lp =
tabView
.getLayoutParams();
197
tabView
.setAllowCollapse(false);
/developers/build/prebuilts/gradle/SlidingTabsBasic/SlidingTabsBasicSample/src/main/java/com/example/android/common/view/
SlidingTabLayout.java
202
View
tabView
= null;
207
tabView
= LayoutInflater.from(getContext()).inflate(mTabViewLayoutId, mTabStrip,
209
tabTitleView = (TextView)
tabView
.findViewById(mTabViewTextViewId);
212
if (
tabView
== null) {
213
tabView
= createDefaultTabView(getContext());
216
if (tabTitleView == null && TextView.class.isInstance(
tabView
)) {
217
tabTitleView = (TextView)
tabView
;
221
tabView
.setOnClickListener(tabClickListener);
223
mTabStrip.addView(
tabView
);
/developers/build/prebuilts/gradle/SlidingTabsColors/SlidingTabsColorsSample/src/main/java/com/example/android/common/view/
SlidingTabLayout.java
202
View
tabView
= null;
207
tabView
= LayoutInflater.from(getContext()).inflate(mTabViewLayoutId, mTabStrip,
209
tabTitleView = (TextView)
tabView
.findViewById(mTabViewTextViewId);
212
if (
tabView
== null) {
213
tabView
= createDefaultTabView(getContext());
216
if (tabTitleView == null && TextView.class.isInstance(
tabView
)) {
217
tabTitleView = (TextView)
tabView
;
221
tabView
.setOnClickListener(tabClickListener);
223
mTabStrip.addView(
tabView
);
/developers/samples/android/common/src/java/com/example/android/common/view/
SlidingTabLayout.java
202
View
tabView
= null;
207
tabView
= LayoutInflater.from(getContext()).inflate(mTabViewLayoutId, mTabStrip,
209
tabTitleView = (TextView)
tabView
.findViewById(mTabViewTextViewId);
212
if (
tabView
== null) {
213
tabView
= createDefaultTabView(getContext());
216
if (tabTitleView == null && TextView.class.isInstance(
tabView
)) {
217
tabTitleView = (TextView)
tabView
;
221
tabView
.setOnClickListener(tabClickListener);
223
mTabStrip.addView(
tabView
);
/external/chromium_org/chrome/browser/ui/cocoa/tabs/
tab_window_controller.h
22
@class
TabView
;
65
- (TabWindowController*)detachTabToNewWindow:(
TabView
*)
tabView
;
70
- (void)insertPlaceholderForTab:(
TabView
*)tab frame:(NSRect)frame;
96
- (BOOL)isTabFullyVisible:(
TabView
*)tab;
133
- (BOOL)isTabDraggable:(NSView*)
tabView
;
tab_controller.h
29
@class
TabView
;
96
// The view associated with this controller, pre-casted as a
TabView
97
- (
TabView
*)
tabView
;
99
// Closes the associated
TabView
by relaying the message to |target_| to
103
// Selects the associated
TabView
by sending |action_| to |target_|.
/frameworks/base/core/java/com/android/internal/widget/
ScrollingTabContainerView.java
249
final View
tabView
= mTabLayout.getChildAt(position);
255
final int scrollPos =
tabView
.getLeft() - (getWidth() -
tabView
.getWidth()) / 2;
280
private
TabView
createTabView(ActionBar.Tab tab, boolean forAdapter) {
281
final
TabView
tabView
= new
TabView
(getContext(), tab, forAdapter);
283
tabView
.setBackgroundDrawable(null);
284
tabView
.setLayoutParams(new ListView.LayoutParams(ListView.LayoutParams.MATCH_PARENT,
287
tabView
.setFocusable(true)
[
all
...]
ActionBarContainer.java
227
public void setTabContainer(ScrollingTabContainerView
tabView
) {
231
mTabContainer =
tabView
;
232
if (
tabView
!= null) {
233
addView(
tabView
);
234
final ViewGroup.LayoutParams lp =
tabView
.getLayoutParams();
237
tabView
.setAllowCollapse(false);
/packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizeTabHost.java
118
TextView
tabView
;
121
tabView
= (TextView) mLayoutInflater.inflate(R.layout.tab_widget_indicator, tabs, false);
122
tabView
.setText(label);
123
tabView
.setContentDescription(label);
124
addTab(newTabSpec(APPS_TAB_TAG).setIndicator(
tabView
).setContent(contentFactory));
126
tabView
= (TextView) mLayoutInflater.inflate(R.layout.tab_widget_indicator, tabs, false);
127
tabView
.setText(label);
128
tabView
.setContentDescription(label);
129
addTab(newTabSpec(WIDGETS_TAB_TAG).setIndicator(
tabView
).setContent(contentFactory));
/packages/apps/Launcher3/src/com/android/launcher3/
AppsCustomizeTabHost.java
124
TextView
tabView
;
127
tabView
= (TextView) mLayoutInflater.inflate(R.layout.tab_widget_indicator, tabs, false);
128
tabView
.setText(label);
129
tabView
.setContentDescription(label);
130
addTab(newTabSpec(APPS_TAB_TAG).setIndicator(
tabView
).setContent(contentFactory));
132
tabView
= (TextView) mLayoutInflater.inflate(R.layout.tab_widget_indicator, tabs, false);
133
tabView
.setText(label);
134
tabView
.setContentDescription(label);
135
addTab(newTabSpec(WIDGETS_TAB_TAG).setIndicator(
tabView
).setContent(contentFactory));
/frameworks/base/core/java/android/widget/
TabWidget.java
406
View
tabView
= getChildTabViewAt(mSelectedTab);
407
if (
tabView
!= null &&
tabView
.getVisibility() == VISIBLE) {
408
return
tabView
.dispatchPopulateAccessibilityEvent(event);
/external/chromium_org/content/browser/resources/media/
webrtc_internals.js
5
var
tabView
= null;
92
tabView
= new
TabView
($('content-root'));
161
tabView
.removeTab(element.id);
183
peerConnectionElement =
tabView
.addTab(id, data.url);
/external/chromium_org/chrome/browser/ui/cocoa/content_settings/
collected_cookies_mac.h
112
@property(readonly, nonatomic) IBOutlet NSTabView*
tabView
;
Completed in 252 milliseconds