OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TabView
(Results
1 - 3
of
3
) sorted by null
/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
...]
/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
...]
/packages/apps/Browser/src/com/android/browser/
TabBar.java
67
private Map<Tab,
TabView
> mTabMap;
100
mTabMap = new HashMap<Tab,
TabView
>();
150
TabView
tv = buildTabView(tab);
208
} else if (view instanceof
TabView
) {
209
final Tab tab = ((
TabView
) view).mTab;
223
private
TabView
buildTabView(Tab tab) {
224
TabView
tabview
= new
TabView
(mActivity, tab);
local
225
mTabMap.put(tab,
tabview
);
[
all
...]
Completed in 50 milliseconds