码迷,mamicode.com
首页 > 移动开发 > 详细

Android -- 重设字符并统计原字符以及修改字符的长度以及位置

时间:2014-09-19 09:54:55      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   color   io   os   java   ar   

1. 效果图

 bubuko.com,布布扣

bubuko.com,布布扣

 

2. 实现的代码

  firstActivity.java

 

package iflab.test;

import android.app.Activity;
import android.os.Bundle;
import android.text.Editable;
import android.text.TextWatcher;
import android.widget.TextView;
import android.widget.Toast;

public class firstActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        TextView myTextView = null; // 声明变量

        myTextView = (TextView) findViewById(R.id.myTextView); // 获取对象

        myTextView.addTextChangedListener(new TextWatcher() { // 添加监听器

                    @Override
                    public void afterTextChanged(Editable s) { // 文本改变后
                        // TODO Auto-generated method stub

                    }

                    @Override
                    public void beforeTextChanged(CharSequence s, int start,
                            int count, int after) {
                        // TODO Auto-generated method stub //文本改变前

                    }

                    @Override
                    public void onTextChanged(CharSequence s, int start,
                            int before, int count) {
                        // TODO Auto-generated method stub //文本改变时
                        Toast.makeText(
                                getApplicationContext(),
                                "原字符串共" + String.valueOf(before) + "个字符。"
                                        + "从第" + String.valueOf(start)
                                        + "个字符开始更改为字符串:" + s + "。共"
                                        + String.valueOf(count) + "字符。",
                                Toast.LENGTH_LONG).show(); // 显示提示信息
                    }
                });
        myTextView.setText("1234567890"); // 重设文本内容

    }
}

 

main.xml 

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/myTextView"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello" />

</LinearLayout>

 

Android -- 重设字符并统计原字符以及修改字符的长度以及位置

标签:android   style   blog   http   color   io   os   java   ar   

原文地址:http://www.cnblogs.com/SM-t/p/3980628.html

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