读书人

editView 中字字句句加入动画

发布时间: 2012-08-26 16:48:06 作者: rapoo

editView 中字里行间加入动画

setContentView(R.layout.main); ?? ? ? ? ? ? TextView textView ?= (TextView) findViewById(R.id.textview); ?
? ? ? ? ? ? SpannableString ss = new SpannableString("abc"); ?
? ? ? ? ? ? Drawable d = getResources().getDrawable(R.drawable.icon32); ?
?
?
? ? ? ? ? ? d.setBounds(0, 0, d.getIntrinsicWidth(), d.getIntrinsicHeight()); ?
? ? ? ? ? ? ImageSpan span = new ImageSpan(d, ImageSpan.ALIGN_BASELINE); ?
? ? ? ? ? ? ss.setSpan(span, 0, 3, Spannable.SPAN_INCLUSIVE_EXCLUSIVE); ?
?
?
? ? ? ? ? ? textView.setText(ss);??

读书人网 >移动开发

热点推荐