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

TextView 选择文字

时间:2016-05-23 18:43:19      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:


final CharSequence edit = text2.getText();
text2.setCursorVisible(true);

text2.setOnTouchListener(new OnTouchListener() {

         public boolean onTouch(View v, MotionEvent event) {
           // TODO Auto-generated method stub
             int sta = 0;
            int end = 0;
           switch (event.getAction()) {

                case MotionEvent.ACTION_DOWN: {
                sta = text2.getSelectionStart();

                return true; 

                 }

                     case MotionEvent.ACTION_MOVE: {
                         text2.setTextColor(Color.RED);
                          SpannableStringBuilder styled = new SpannableStringBuilder(edit);
                          styled.setSpan(new ForegroundColorSpan(Color.BLUE), 1,30,Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
                          text2.setText(styled);
                          return true;
                         }

                    case MotionEvent.ACTION_UP: {
                        end = text2.getSelectionEnd();
                        CharSequence sel = edit.subSequence(5, 80);
                        text1.append(String.valueOf(end));
                         return true;
                   }
           }
           return true;
       }
   });

TextView 选择文字

标签:

原文地址:http://www.cnblogs.com/lucktian/p/5520925.html

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