android TextView EditTextView一些技巧使用 (视图代码布局)

时间:2023-03-08 17:41:15

android TextView 是最常用的控件

可以用作普通的显示,还可以用作有显示文字的按钮,用作有显示图片的图文组合

1、 图文组合

xml 中:

<TextView

android:id="@+id/txt_back"

android:layout_width="wrap_content"

android:layout_height="match_parent"

android:layout_centerVertical="true"

android:paddingLeft="@dimen/margin_padding_ten"

android:paddingRight="@dimen/margin_padding_ten"

android:drawableLeft="@drawable/user_btn_return"

/>

代码中:

// TextView 左侧显示图标

Drawable drawable = getResources().getDrawable(R.drawable.skin_back);

// / 这一步必须要做,否则不会显示.

drawable.setBounds(0, 0, drawable.getMinimumWidth(),drawable.getMinimumHeight());

backTextView.setCompoundDrawables(drawable,null,null,null);

2、RelativeLayout  代码布局居中

android.widget.RelativeLayout.LayoutParams lp = (LayoutParams) view.getLayoutParams();

lp.width = width;

lp.height = height;

lp.addRule(RelativeLayout.CENTER_IN_PARENT, RelativeLayout.TRUE);  //居中

view.requestLayout();

3、TextView文字垂直靠左居中,

设置android:gravity="center_vertical|left"。

4、EditTextView 字数限制

最简单的方式,如限制8个字符长度

android:maxLength="8"

其它方式:http://blog.****.net/oliver102/article/details/10167637

5、TextView上下空隙

在安卓文档中发现一个TextView属性:

android:includeFontPadding      为上标和下标留出足够的空间,以取代字体上下标.默认为真.

原来是TextView默认留下了上下的padding,是为了显示上标和下标。

于是设置:android:includeFontPadding="false",问题解决

http://www.tuicool.com/articles/7vemI3u

6、属性限制字数

android:maxLength="16"

不管是中文还是英文限制的单元都是16个