Android之EditText

恰逢暑假,把有关Android的EditText相关内容整理一下:

一、为EditText添加图片

        在EditText中添加图片,只需要设置android:drawableLeft、android:drawableRight、android:drawableTop或者android:drawableBottom属性,在xml中即可完成。例如:

     

    <EditText
        android:id="@+id/text"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:hint="hello"
        android:drawableLeft="@drawable/search"
        />


效果如下:

 

二、为EditText添加Button

        在EditText中添加Button相对麻烦一些,这里实现的方法是利用相对布局RelativeLayout,关键在于设置android:layout_alignBaseline(alignRight、alignLeft、alignTop、alignBottom)属性使Button控件的边缘与EditText的边缘对齐。

       

    <RelativeLayout 
		android:layout_width="fill_parent" 
		android:layout_height="wrap_content" 
	    > 
		<EditText 
			android:id="@+id/searcheidt" 
			android:layout_width="fill_parent" 
			android:layout_height="wrap_content" 
			android:singleLine="true" 
			android:hint="search" 
			/> 
		<Button 
			android:id="@+id/search_btn" 
			android:layout_width="wrap_content" 
			android:layout_height="wrap_content" 
			android:background="@drawable/search"
			android:layout_alignTop="@id/searcheidt" 
			android:layout_alignRight="@id/searcheidt" 
			android:layout_marginRight="5px" 
			/> 
      </RelativeLayout> 


这里我设置了android:layout_alignTop和 android:layout_alignRight属性,是Button的顶部边缘和右边缘分别于EditText的顶部边缘和右边缘对齐,即可实现(此时搜索图标表示一个按钮,通过设置监听器可以实现相应功能):

 

三、shape的使用

       在android中常常用shape来修改控件的显示属性,比如:圆角、描边之类的。首先,写一个xml文件:edittext_shape.xml

         

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"> 
    <!--圆角-->
    <corners
        android:radius="5dp"/>
    <!--实心-->
    <solid
        android:color="#eeeeee"/>
    <!--描边-->
    <stroke
        android:width="1dip"
        android:color="#c6cbce"/>
    <!--渐变-->
    <gradient/>
</shape>


把以上edittext_shape.xml文件放到drawable文件夹内,然后只需要在设置EditText的background属性即可:

 android:background="@drawable/edittext_shape"

 

如下:

           

  <EditText
        android:id="@+id/text"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:hint="hello"
        android:drawableLeft="@drawable/search"
        android:background="@drawable/edittext_shape"
        />

效果如下:


  
就先整理这些。。。



 

 


  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值