OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:linearlayouts
(Results
1 - 14
of
14
) sorted by null
/development/samples/ApiDemos/src/com/example/android/apis/view/
LinearLayout5.java
28
* Demonstrates building a simple form with nested
LinearLayouts
.
_package.html
268
<li>Using nested
LinearLayouts
(a horizontal layout inside a vertical layout)
/frameworks/base/core/res/res/layout/
global_actions_item.xml
18
work around this for now with
LinearLayouts
. -->
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ViewLayerInvalidationActivity.java
33
ArrayList<LinearLayout>
linearLayouts
= new ArrayList<LinearLayout>();
108
for (LinearLayout layout :
linearLayouts
) {
143
linearLayouts
.add(parent);
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/
ExplodeRenderingHelperTest.java
113
// create the
linearlayouts
.
146
// create the
linearlayouts
.
/frameworks/base/docs/html/distribute/googleplay/strategies/
app-quality.jd
74
A great way to improve UI performance is to minimize the complexity of your layouts. If you open up <a href="{@docRoot}tools/help/hierarchy-viewer.html">hierarchyviewer</a> and see that your layouts are more than 5 levels deep, it may be time to simplify your layout. Consider refactoring those deeply nested
LinearLayouts
into RelativeLayout. The impact of View objects is cumulative — each one costs about 1 to 2 KB of memory, so large view hierarchies can be a recipe for disaster, causing frequent VM garbage collection passes which block the main (UI) thread. You can learn more in <a href="http://www.youtube.com/watch?v=wDBM6wVEO70">World of ListView</a>, another session at Google I/O.</p>
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
LinearLayoutRule.java
[
all
...]
/development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
ContactDetailFragment.java
424
* has three postal addresses, then 3
LinearLayouts
are generated.
/frameworks/base/docs/html/training/notepad/
notepad-ex2.jd
321
<p><code>layout_weight</code> is used in
LinearLayouts
/frameworks/support/v7/appcompat/res/values/
attrs.xml
94
<!-- A style that may be applied to horizontal
LinearLayouts
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
GridLayoutConverter.java
385
// Fix up children moved from
LinearLayouts
that have "invalid" sizes that
[
all
...]
RelativeLayoutConversionHelper.java
372
*
LinearLayouts
with weight distribution.
[
all
...]
/sdk/eclipse/
changes.txt
308
with large, normal and small theme sizes, and
LinearLayouts
are
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileCreationPage.java
287
// Only set "vertical" orientation of
LinearLayouts
by default;
[
all
...]
Completed in 264 milliseconds