OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:viewgroup
(Results
276 - 300
of
1659
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/frameworks/base/docs/html/guide/topics/ui/
overview.jd
6
{@link android.view.
ViewGroup
} objects. A {@link android.view.View} is an object that draws
7
something on the screen that the user can interact with. A {@link android.view.
ViewGroup
} is an
8
object that holds other {@link android.view.View} (and {@link android.view.
ViewGroup
}) objects in
12
android.view.
ViewGroup
} subclasses that offer you common input controls (such as buttons and text
19
android.view.View} and {@link android.view.
ViewGroup
} objects, as shown in figure 1. Each view group
25
<img src="{@docRoot}images/
viewgroup
.png" alt="" />
67
android.view.
ViewGroup
} objects. Android provides several app components that offer
/frameworks/base/docs/html/sdk/api_diff/7/changes/
android.view.ViewGroup.html
10
android.view.
ViewGroup
74
Class android.view.<A HREF="../../../../reference/android/view/
ViewGroup
.html" target="_top"><font size="+2"><code>
ViewGroup
</code></font></A>
86
<A NAME="android.view.
ViewGroup
.isChildrenDrawingOrderEnabled_added()"></A>
87
<nobr><code>boolean</code> <A HREF="../../../../reference/android/view/
ViewGroup
.html#isChildrenDrawingOrderEnabled()" target="_top"><code>isChildrenDrawingOrderEnabled</code></A>()</nobr>
93
<A NAME="android.view.
ViewGroup
.setChildrenDrawingOrderEnabled_added(boolean)"></A>
94
<nobr><code>void</code> <A HREF="../../../../reference/android/view/
ViewGroup
.html#setChildrenDrawingOrderEnabled(boolean)" target="_top"><code>setChildrenDrawingOrderEnabled</code></A>(<code>boolean</code>)</nobr>
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
HeadsUpNotificationView.java
28
import android.view.
ViewGroup
;
52
private
ViewGroup
mContentHolder;
53
private
ViewGroup
mContentSlider;
71
public
ViewGroup
getHolder() {
121
//
ViewGroup
methods
133
mContentHolder = (
ViewGroup
) findViewById(R.id.content_holder);
134
mContentSlider = (
ViewGroup
) findViewById(R.id.content_slider);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ViewLayerInvalidationActivity.java
23
import android.view.
ViewGroup
;
126
private void randomInvalidator(
ViewGroup
parent) {
132
if (child instanceof
ViewGroup
) {
133
randomInvalidator((
ViewGroup
) child);
154
if (!(view instanceof
ViewGroup
)) {
157
ViewGroup
parent = (
ViewGroup
) view;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
BridgeRenderSession.java
28
import android.view.
ViewGroup
;
120
if (parentView instanceof
ViewGroup
== false) {
121
throw new IllegalArgumentException("parentView is not a
ViewGroup
");
128
mLastResult = mSession.insertChild((
ViewGroup
) parentView, childXml, index,
143
if (parentView instanceof
ViewGroup
== false) {
144
throw new IllegalArgumentException("parentView is not a
ViewGroup
");
154
mLastResult = mSession.moveChild((
ViewGroup
) parentView, (View) childView, index,
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
ViewClassInfo.java
21
* Information needed to represent a View or
ViewGroup
(aka Layout) item
26
/** Is this a layout class (i.e.
ViewGroup
) or just a view? */
92
/** Returns whether this is a layout class (i.e.
ViewGroup
) or just a View */
128
* Sets a link on the info of the super class of this View or
ViewGroup
.
131
* except for the top
ViewGroup
which links to the View info.
139
/** Sets the javadoc for this View or
ViewGroup
. */
144
/** Sets the list of attributes for this View or
ViewGroup
. */
/cts/tests/tests/widget/src/android/widget/cts/
TableRowTest.java
27
import android.view.
ViewGroup
;
29
import android.view.
ViewGroup
.OnHierarchyChangeListener;
148
assertFalse(mockTableRow.checkLayoutParams(new
ViewGroup
.LayoutParams(200, 300)));
167
new
ViewGroup
.LayoutParams(200, 300));
174
layoutParams = mockTableRow.generateLayoutParams((
ViewGroup
.LayoutParams) null);
200
* android.view.
ViewGroup
.OnHierarchyChangeListener#onChildViewAdded
211
* android.view.
ViewGroup
.OnHierarchyChangeListener#onChildViewRemoved
241
protected boolean checkLayoutParams(
ViewGroup
.LayoutParams p) {
252
ViewGroup
.LayoutParams p) {
RelativeLayoutTest.java
35
import android.view.
ViewGroup
;
36
import android.view.
ViewGroup
.LayoutParams;
285
myRelativeLayout.generateLayoutParams((
ViewGroup
.LayoutParams) null);
294
ViewGroup
.LayoutParams layoutParams = myRelativeLayout.generateDefaultLayoutParams();
296
assertEquals(
ViewGroup
.LayoutParams.WRAP_CONTENT, layoutParams.width);
297
assertEquals(
ViewGroup
.LayoutParams.WRAP_CONTENT, layoutParams.height);
311
ViewGroup
.LayoutParams p1 = new
ViewGroup
.LayoutParams(200, 300);
337
protected boolean checkLayoutParams(
ViewGroup
.LayoutParams p) {
342
protected
ViewGroup
.LayoutParams generateDefaultLayoutParams()
[
all
...]
ViewSwitcherTest.java
26
import android.view.
ViewGroup
;
84
mViewSwitcher.addView(lv1, 0, new
ViewGroup
.LayoutParams(20, 25));
88
mViewSwitcher.addView(lv2, 1, new
ViewGroup
.LayoutParams(20, 25));
/development/samples/ActionBarCompat/src/com/example/android/actionbarcompat/
ActionBarHelperBase.java
31
import android.view.
ViewGroup
;
85
final
ViewGroup
actionBarCompat = getActionBarCompat();
91
0,
ViewGroup
.LayoutParams.FILL_PARENT);
155
* Returns the {@link android.view.
ViewGroup
} for the action bar on phones (compatibility action
158
private
ViewGroup
getActionBarCompat() {
159
return (
ViewGroup
) mActivity.findViewById(R.id.actionbar_compat);
171
final
ViewGroup
actionBar = getActionBarCompat();
181
actionButton.setLayoutParams(new
ViewGroup
.LayoutParams(
186
ViewGroup
.LayoutParams.FILL_PARENT));
/frameworks/base/core/tests/coretests/src/android/util/
GridScenario.java
22
import android.view.
ViewGroup
;
244
mGridView.setLayoutParams(new
ViewGroup
.LayoutParams(
245
ViewGroup
.LayoutParams.MATCH_PARENT,
246
ViewGroup
.LayoutParams.MATCH_PARENT));
328
protected View createView(int position,
ViewGroup
parent, int desiredHeight) {
332
final
ViewGroup
.LayoutParams lp = new AbsListView.LayoutParams(
333
ViewGroup
.LayoutParams.MATCH_PARENT,
334
ViewGroup
.LayoutParams.WRAP_CONTENT);
356
public View getView(int position, View convertView,
ViewGroup
parent) {
/cts/tests/tests/holo/src/android/holo/cts/
ReferenceViewGroup.java
25
import android.view.
ViewGroup
;
28
* {@link
ViewGroup
} that inflates to a reference width and height.
30
public class ReferenceViewGroup extends
ViewGroup
{
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
WiFiChatFragment.java
10
import android.view.
ViewGroup
;
32
public View onCreateView(LayoutInflater inflater,
ViewGroup
container,
83
public View getView(int position, View convertView,
ViewGroup
parent) {
WiFiDirectServicesList.java
10
import android.view.
ViewGroup
;
31
public View onCreateView(LayoutInflater inflater,
ViewGroup
container,
65
public View getView(int position, View convertView,
ViewGroup
parent) {
/external/chromium_org/chrome/android/testshell/java/src/org/chromium/chrome/testshell/
TabManager.java
10
import android.view.
ViewGroup
;
26
private
ViewGroup
mContentViewHolder;
53
mContentViewHolder = (
ViewGroup
) findViewById(R.id.content_container);
/frameworks/base/core/java/android/transition/
ChangeBounds.java
29
import android.view.
ViewGroup
;
105
public Animator createAnimator(final
ViewGroup
sceneRoot, TransitionValues startValues,
112
ViewGroup
startParent = (
ViewGroup
) startParentVals.get(PROPNAME_PARENT);
113
ViewGroup
endParent = (
ViewGroup
) endParentVals.get(PROPNAME_PARENT);
169
if (view.getParent() instanceof
ViewGroup
) {
170
final
ViewGroup
parent = (
ViewGroup
) view.getParent();
235
if (view.getParent() instanceof
ViewGroup
) {
[
all
...]
/frameworks/base/docs/html/sdk/api_diff/16/changes/
android.animation.LayoutTransition.html
100
<A NAME="android.animation.LayoutTransition.hideChild_added(android.view.
ViewGroup
, android.view.View, int)"></A>
101
<nobr><code>void</code> <A HREF="../../../../reference/android/animation/LayoutTransition.html#hideChild(android.view.
ViewGroup
, android.view.View, int)" target="_top"><code>hideChild</code></A>(<code>
ViewGroup
,</nobr> View<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
114
<A NAME="android.animation.LayoutTransition.showChild_added(android.view.
ViewGroup
, android.view.View, int)"></A>
115
<nobr><code>void</code> <A HREF="../../../../reference/android/animation/LayoutTransition.html#showChild(android.view.
ViewGroup
, android.view.View, int)" target="_top"><code>showChild</code></A>(<code>
ViewGroup
,</nobr> View<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
129
<A NAME="android.animation.LayoutTransition.hideChild_changed(android.view.
ViewGroup
, android.view.View)"></A>
130
<nobr><code>void</code> <A HREF="../../../../reference/android/animation/LayoutTransition.html#hideChild(android.view.
ViewGroup
, android.view.View)" target="_top"><code>hideChild</code></A>(<code>
ViewGroup
,</nobr> View<nobr><nobr></code>) </nobr>
139
<A NAME="android.animation.LayoutTransition.showChild_changed(android.view.
ViewGroup
, android.view.View)"></A
[
all
...]
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
Demo1.java
23
import android.view.
ViewGroup
;
32
ViewGroup
mSceneRoot;
44
mSceneRoot = (
ViewGroup
) container.getParent();
Demo2.java
21
import android.view.
ViewGroup
;
30
ViewGroup
mSceneRoot;
42
mSceneRoot = (
ViewGroup
) container.getParent();
Demo4.java
22
import android.view.
ViewGroup
;
31
ViewGroup
mSceneRoot;
42
mSceneRoot = (
ViewGroup
) container.getParent();
FadingTest.java
21
import android.view.
ViewGroup
;
32
ViewGroup
mSceneRoot;
47
mSceneRoot = (
ViewGroup
) container.getParent();
InterruptionTest.java
22
import android.view.
ViewGroup
;
43
ViewGroup
sceneRoot = (
ViewGroup
) findViewById(R.id.sceneRoot);
LoginActivityFromResources.java
21
import android.view.
ViewGroup
;
29
ViewGroup
mSceneRoot;
40
mSceneRoot = (
ViewGroup
) container.getParent();
ResourceLoadingTest.java
21
import android.view.
ViewGroup
;
32
ViewGroup
mSceneRoot;
43
mSceneRoot = (
ViewGroup
) container.getParent();
ScenesTestv21.java
23
import android.view.
ViewGroup
;
32
ViewGroup
mSceneRoot;
43
mSceneRoot = (
ViewGroup
) container.getParent();
Completed in 5368 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>