OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:layoutView
(Results
1 - 5
of
5
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
ResizeState.java
84
public Object
layoutView
;
91
* @param
layoutView
the actual View instance for the layout, or null if not known
94
ResizeState(BaseLayoutRule rule, INode layout, Object
layoutView
, INode node) {
99
this.
layoutView
=
layoutView
;
/development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoThumbnailFragment.java
415
View
layoutView
= inflater.inflate(R.layout.galleryitem, null);
420
View thumbView =
layoutView
.findViewById(R.id.thumbImage);
424
* list. In addition, this sets the
layoutView
's width to be MATCH_PARENT, and its
427
layoutView
.setLayoutParams(new AbsListView.LayoutParams(LayoutParams.MATCH_PARENT,
430
// Sets the
layoutView
's tag to be the same as the thumbnail image tag.
431
layoutView
.setTag(thumbView);
432
return
layoutView
;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
GridLayoutConverter.java
138
CanvasViewInfo
layoutView
= findViewForElement(mRootView, mLayout);
139
if (
layoutView
== null ||
layoutView
.getChildren().size() == 0) {
145
GridModel gridModel = new GridModel(
layoutView
, mLayout, mFlatten);
[
all
...]
RelativeLayoutConversionHelper.java
128
CanvasViewInfo
layoutView
= findViewForElement(mRootView, mLayout);
129
if (
layoutView
== null ||
layoutView
.getChildren().size() == 0) {
135
List<View> views = analyzeLayout(
layoutView
);
150
private List<View> analyzeLayout(CanvasViewInfo
layoutView
) {
151
EdgeList edgeList = new EdgeList(
layoutView
);
[
all
...]
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
Workspace.java
140
private LayoutRenderer
layoutView
;
764
JScrollPane p = new JScrollPane(
layoutView
= new LayoutRenderer(scene, sceneView));
785
layoutView
.setBackground(Color.WHITE);
786
layoutView
.setForeground(Color.BLACK);
798
layoutView
.setBackground(Color.BLACK);
799
layoutView
.setForeground(Color.WHITE);
811
layoutView
.setShowExtras(((JCheckBox) e.getSource()).isSelected());
821
layoutView
.repaint();
[
all
...]
Completed in 1450 milliseconds