码迷,mamicode.com
首页 > 其他好文 > 详细

搜索框代码

时间:2016-08-03 18:29:58      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

  1.   <LinearLayout  
  2.         android:background="#eb4f38"  
  3.         android:layout_width="match_parent"  
  4.         android:layout_height="wrap_content"  
  5.         android:orientation="horizontal">  
  6.   
  7.   
  8.         <FrameLayout  
  9.   
  10.             android:layout_weight="1"  
  11.             android:layout_width="0dp"  
  12.             android:layout_height="wrap_content">  
  13.   
  14.             <EditText  
  15.                 android:id="@+id/search_et_input"  
  16.                 android:layout_gravity="center_vertical"  
  17.                 android:layout_margin="10dp"  
  18.                 android:drawableLeft="@drawable/search_icon"  
  19.                 android:drawablePadding="5dp"  
  20.                 android:layout_width="match_parent"  
  21.                 android:layout_height="wrap_content"  
  22.                 android:background="@drawable/search_edittext_shape"  
  23.                 android:textSize="16sp"  
  24.                 android:imeOptions="actionSearch"  
  25.                 android:inputType="text"  
  26.                 android:hint="请输入关键字"/>  
  27.   
  28.             <ImageView  
  29.                 android:visibility="gone"  
  30.                 android:layout_marginRight="20dp"  
  31.                 android:src="@drawable/iv_delete_bg"  
  32.                 android:id="@+id/search_iv_delete"  
  33.                 android:layout_gravity="right|center_vertical"  
  34.                 android:layout_width="wrap_content"  
  35.                 android:layout_height="wrap_content"/>  
  36.         </FrameLayout>  
  37.   
  38.         <Button  
  39.             android:id="@+id/search_btn_back"  
  40.             android:layout_marginRight="10dp"  
  41.             android:layout_marginTop="10dp"  
  42.             android:layout_marginBottom="10dp"  
  43.             android:layout_gravity="center_vertical"  
  44.             android:background="@drawable/btn_search_bg"  
  45.             android:layout_width="@dimen/btn_width"  
  46.             android:layout_height="@dimen/btn_height"  
  47.             android:text="返回"  
  48.             android:textColor="@color/color_white"/>  
  49.     </LinearLayout>  

搜索框代码

标签:

原文地址:http://www.cnblogs.com/xiguameng/p/5733777.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!