摘要:
ImageView为我们提供了adjustViewBounds属性,用于设置缩放时是否保持原图长宽比! 单独设置不起作用,需要配合maxWidth和maxHeight属性一起使用!而后面这两个属性 也是需要adjustViewBounds为true才会生效的。 代码示例: <LinearLayout 阅读全文
摘要:
设置透明度: <ImageView android:layout_width="150dp" android:layout_height="wrap_content" android:src="@drawable/pig" android:background="#6699FF" /> 阅读全文
摘要:
解决blackground拉伸导致图片变形的方法: 在前面的效果图中的第二个Imageview中我们可以看到图片已经被拉伸变形了, 正方形变成了长方形,对于和我一样有轻微强迫症的人来说,显然是不可接受的, 有没有办法去设置呢?答案肯定是有的,笔者暂时知道的有以下两种方式: 这个适用于动态加载Imag 阅读全文
摘要:
学习图像视图: 写个简单的布局测试下: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id 阅读全文
摘要:
自定义ImageButton:MyButton.java package demo.com.jay.buttondemo; import android.content.Context; import android.graphics.Canvas; import android.graphics. 阅读全文
摘要:
圆角按钮的实现: <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="tru 阅读全文
摘要:
StateListDrawable简介: StateListDrawable是Drawable资源的一种,可以根据不同的状态,设置不同的图片效果,关键节点 < selector >,我们只需要将Button的background属性设置为该drawable资源即可轻松实现,按下 按钮时不同的按钮颜色 阅读全文
摘要:
带删除按钮的EditText public class EditTextWithDel extends EditText { private final static String TAG = "EditTextWithDel"; private Drawable imgInable; privat 阅读全文
摘要:
带表情的EditText的简单实现 public class MainActivity extends Activity { private Button btn_add; private EditText edit_one; @Override protected void onCreate(Bu 阅读全文
摘要:
EditText设置文字间隔,设置英文字母大写类型 我们可以通过下述两个属性来设置字的间距: android:textScaleX="1.5" //设置字与字的水平间隔 android:textScaleY="1.5" //设置字与字的垂直间隔 阅读全文