alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Android example source code file (search_bar.xml)

This example Android source code file (search_bar.xml) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Android by Example" TM.

Java - Android tags/keywords

bottom, edittext, ffffffff, imagebutton, inner, linearlayout, listview, outer, textview, the, this

The search_bar.xml Android example source code

<?xml version="1.0" encoding="utf-8"?>
<!--
/* apps/common/res/layout/SearchBar.xml
**
** Copyright 2007, Google Inc.
**
** Licensed under the Apache License, Version 2.0 (the "License"); 
** you may not use this file except in compliance with the License. 
** You may obtain a copy of the License at 
**
**     http://www.apache.org/licenses/LICENSE-2.0 
**
** Unless required by applicable law or agreed to in writing, software 
** distributed under the License is distributed on an "AS IS" BASIS, 
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
** See the License for the specific language governing permissions and 
** limitations under the License.
*/
-->
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/search_bar"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:paddingBottom="14dip"
    android:orientation="vertical" 
    android:focusable="true"
    android:descendantFocusability="afterDescendants">

    <!-- Outer layout defines the entire search bar at the top of the screen -->
    <!-- Bottom padding of 16 is due to the graphic, with 9 extra pixels of drop
         shadow, plus the desired padding of "8" against the user-visible (grey)
         pixels, minus "1" to correct for positioning of the edittext & button. -->
    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:paddingLeft="8dip"
        android:paddingRight="8dip"
        android:paddingTop="6dip"
        android:paddingBottom="16dip"
        android:baselineAligned="false"
        android:background="@android:drawable/search_plate"
        android:addStatesFromChildren="true" >

        <!-- This is actually used for the badge icon *or* the badge label (or neither) -->
        <TextView 
            android:id="@+id/search_badge"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingLeft="2dip"
            android:drawablePadding="0dip"
            android:textAppearance="?android:attr/textAppearanceSmall"
            android:textColor="?android:attr/textColorPrimary" />

        <!-- Inner layout contains the button(s) and EditText -->
        <!-- The layout_marginTop of "1" corrects for the extra 1 pixel of padding at the top of 
             textfield_selected.9.png.  The "real" margin as displayed is "2". -->
        <!-- The layout_marginBottom of "-5" corrects for the spacing we see at the 
             bottom of the edittext and button images.  The "real" margin as displayed is "8" -->
        <LinearLayout
            android:id="@+id/search_edit_frame"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="1dip"
            android:layout_marginBottom="-5dip"
            android:orientation="horizontal"
            android:addStatesFromChildren="true"
            android:gravity="center_vertical"
            android:baselineAligned="false" >

            <EditText
                android:id="@+id/search_src_text"
                android:layout_height="wrap_content"
                android:layout_width="0dip"
                android:layout_weight="1.0"
                android:paddingLeft="8dip"
                android:paddingRight="6dip"
                android:singleLine="true" />
                
            <!-- This button can switch between text and icon "modes" -->
            <Button 
                android:id="@+id/search_go_btn"
                android:layout_marginLeft="1dip"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:drawableLeft="@android:drawable/ic_btn_search"
            />

            <ImageButton android:id="@+id/search_voice_btn"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@android:drawable/ic_btn_speak_now"
            />
        </LinearLayout>
        
    </LinearLayout>

    <!-- The margintop of -21 adjusts the listview to abut the bottom of the edittext. -->
    <ListView 
        android:id="@+id/search_suggest_list"
        android:layout_marginTop="-21dip"
        android:layout_width="200dip"
        android:layout_height="fill_parent"
        android:background="@android:drawable/spinner_dropdown_background_down"
        android:divider="@android:drawable/divider_horizontal_bright" 
        android:cacheColorHint="#FFFFFFFF" />

</LinearLayout>

Other Android examples (source code examples)

Here is a short list of links related to this Android search_bar.xml source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.