/frameworks/base/docs/html/resources/tutorials/views/ |
index.jd | 12 to get you started quickly with common Android layouts and widgets.</p> 32 <h2>Layouts</h2> 116 There are plenty more layouts and widgets available. See the {@link android.view.View} class 117 for more on View layouts, and the {@link android.widget widget package}
|
/packages/apps/Contacts/ |
proguard.flags | 5 # Xml files containing onClick (menus and layouts) require that proguard not
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
SeekBarRule.java | 36 // almost no usable width -- so just make it grow in all layouts
|
/packages/apps/Mms/src/com/android/mms/model/ |
MediaModelFactory.java | 46 SMILMediaElement sme, LayoutModel layouts, PduBody pb) 54 context, tag, src, (SMILRegionMediaElement) sme, layouts, part); 96 LayoutModel layouts, PduPart part) throws DrmException, IOException, MmsException { 99 RegionModel region = layouts.findRegionById(sre.getId()); 112 RegionModel region = layouts.findRegionById(rId);
|
/external/chromium/chrome/browser/chromeos/input_method/ |
input_method_util.h | 74 // This function only supports xkb layouts. 165 // Enables input methods (e.g. Chinese, Japanese) and keyboard layouts (e.g. 168 // For example, if |language_code| is "en-US", US qwerty and US dvorak layouts 170 // keyboard layouts for Germany would be enabled. 171 // If |type| is kAllInputMethods, all keyboard layouts and all input methods 172 // are enabled. If it's kKeyboardLayoutsOnly, only keyboard layouts are enabled.
|
xkeyboard_unittest.cc | 169 std::set<std::string> layouts; local 178 // All 4*3*3 layouts should be different. 179 EXPECT_TRUE(layouts.insert(layout).second) << "layout: " << layout;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
FragmentMenu.java | 101 // which layouts it is referring to and list these here as reasonable 114 // Find layouts. This is based on just skimming the Fragment class and looking 119 List<Pair<String, String>> layouts = new ArrayList<Pair<String, String>>(); local 146 layouts.add(Pair.of(title, layout)); 154 if (layouts.size() > 0) { 156 for (Pair<String, String> layout : layouts) {
|
IncludeFinder.java | 90 /** Map from a layout resource name to a set of layouts included by the given resource */ 94 * Reverse map of {@link #mIncludes}; points to other layouts that are including a 95 * given layouts 144 * @param includer the resource name to return included layouts for 145 * @return the layouts included by the given resource 154 * Gets the list of all other layouts that are including the given layout. 413 Collection<ResourceItem> layouts = resources.getResourceItemsOfType(LAYOUT); local 414 for (ResourceItem layout : layouts) { 581 * Record the list of included layouts from the given layout 583 * @param includer the layout including other layouts [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/ |
LayoutDescriptors.java | 101 /** The document descriptor. Contains all layouts and views linked together. */ 126 /** Returns the document descriptor. Contains all layouts and views linked together. */ 166 * @param layouts The list of layouts in the framework. 170 public synchronized void updateDescriptors(ViewClassInfo[] views, ViewClassInfo[] layouts, 192 if (layouts != null) { 193 for (ViewClassInfo info : layouts) { 213 // Link all layouts to everything else here.. recursively 218 // The gesture overlay descriptor is really a layout but not included in the layouts list 407 "Lets you statically include XML layouts inside other XML layouts.", // toolti [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
ExpandableList2.java | 115 new String[] { Contacts.DISPLAY_NAME }, // Name for group layouts 117 new String[] { Phone.NUMBER }, // Number for child layouts
|
_package.html | 19 <li>Layouts 158 Views/Layouts/LinearLayout/Example 1 186 Views/Layouts/LinearLayout/Example 2 214 Views/Layouts/LinearLayout/Example 3 244 Views/Layouts/LinearLayout/Example 4 276 Views/Layouts/LinearLayout/Example 5 308 Views/Layouts/RelativeLayout/Example 1 340 Views/Layouts/RelativeLayout/Example 2 374 Views/Layouts/ScrollView/Example 1
|
/development/samples/ActionBarCompat/src/com/example/android/actionbarcompat/ |
ActionBarHelperHoneycomb.java | 73 * Returns a {@link Context} suitable for inflating layouts for the action bar. The
|
/frameworks/base/core/java/android/widget/ |
Space.java | 27 * in general purpose layouts.
|
SimpleCursorTreeAdapter.java | 84 * @param groupTo The group views (from the group layouts) that should 97 * @param childTo The child views (from the child layouts) that should 125 * @param groupTo The group views (from the group layouts) that should 134 * @param childTo The child views (from the child layouts) that should 158 * @param groupTo The group views (from the group layouts) that should 167 * @param childTo The child views (from the child layouts) that should
|
/sdk/docs/ |
gscripts.txt | 12 Details on how to handle the various Android views and layouts is not
|
/external/chromium/chrome/browser/chromeos/login/ |
language_switch_menu.cc | 136 // If we have switched the locale, enable the keyboard layouts that 183 // Here, we should enable keyboard layouts associated with the locale so 184 // that users can use those keyboard layouts on the login screen.
|
language_switch_menu.h | 49 // Enables the keyboard layouts associated with the new locale.
|
/frameworks/base/docs/html/guide/topics/views/ |
intro.jd | 16 <p>The Viewgroup class serves as a base class for <em>layouts</em> — a set of fully implemented subclasses that provide common types of screen layout. The layouts give you a way to build a structure for a set of views. </p> 20 <p>On the Android platform, you define an Activity's UI using a tree of view and viewgroup nodes, as shown in the diagram below. The tree can be as simple or complex as you need to make it, and you can build it up using Android's set of predefined widgets and layouts or custom view types that you create yourself. </p>
|
ui-xml.jd | 8 <li>You can declare UI elements statically, in XML. Android provides a straightforward XML vocabulary that corresponds to the View classes and subclasses, such as those for widgets and layouts. </li> 12 <p>One advantage of declaring your UI in XML is that it enables you to better separate the presentation of your application from the code that controls it's behavior. Your UI description is external to your application code, which means that you can modify or adapt it without having to modify your source code and recompile. For example, you can create XML layouts for different screen orientations and for a variety of device screen sizes or languages. Additionally, declaring in XML makes it easier to see the elements and structure of your UI, so it's easier to debug problems. </p> 14 <p>The Android framework gives you the flexibility to use either or both of these ways of declaring and managing your application's UI. For example, you could declare your application's default layouts in XML, including the screen elements that will appear in them and their properties. You could then add code in your application that would modify the state of the screen objects, including those declared in XML, at run time. </p> 35 <p>Using Android's XML vocabulary, you can quickly design UI layouts and the screen elements they contain, in the same way you create HTML files — as a series of nested tags. </p>
|
/frameworks/base/docs/html/guide/practices/ |
tablets-and-handsets.jd | 11 <li><a href="#Fragments">Creating Single-pane and Multi-pane Layouts</a></li> 45 resources</a> (such as alternative layouts that reposition some views or alternative 56 UI into separate parts, which you can then combine to create multi-pane layouts when running on a 67 supports different screen sizes and densities with flexible layouts and alternative bitmaps, 80 different combinations—in multi-pane layouts on tablets and single-pane layouts on handsets. 111 <li><strong>Implement flexible layouts</strong>, as discussed in the 124 information about creating flexible layouts, refer to the links provided above.</p> 135 <h2 id="Fragments">Creating Single-pane and Multi-pane Layouts</h2> 166 layouts with different combinations of fragments, such that you can design "multi-pane" layouts fo [all...] |
/sdk/eclipse/ |
changes.txt | 6 longer run when strings are edited, or when layouts are edited 73 - Resize support in most layouts. In LinearLayout, sizes are mapped 93 - The new "Change Layout" refactoring changes layouts from one type 96 in other layouts and offers to combine all into a single include. 107 and you can also pick the header and footer layouts. 117 or in included libraries, and these can be dragged into layouts. 123 ensure that large layouts are always fully visible unless you 131 layouts for different languages or render targets without having 185 - When the Android 3.0 rendering library is selected, layouts render 191 - Further improvements to <merge> layouts, as well as layouts wit [all...] |
/external/qemu/android/skin/ |
file.c | 567 SkinLayout** ptail = &file->layouts; 659 /* then load all layouts */ 660 node = aconfig_find(aconfig, "layouts"); 665 SkinLayout** ptail = &file->layouts; 678 if (file->layouts == NULL) 723 file->layouts = NULL;
|
/development/samples/ApiDemos/res/layout/ |
linear_layout_5.xml | 18 Demonstrates a nesting layouts to make a form
|
/frameworks/base/docs/html/resources/articles/ |
layout-tricks-merge.jd | 1 page.title=Layout Tricks: Merging Layouts 6 <p>The articles showed you how to use the <code><include /></code> tag in XML layouts, to 11 optimizing Android layouts by reducing the number of levels in view trees. It's 61 root tag and tags in XML layouts always represent view instances.</p>
|
/packages/apps/Calendar/src/com/android/calendar/ |
EmailAddressAdapter.java | 32 * defined locally: strings and layouts.
|