zoukankan      html  css  js  c++  java
  • Android中控件的OnKeyListener()事件

    今天练习一下控件的键盘事件!也就是onKey事件!

    练习题目:

        在编辑框中输入、在文本框中实时的显示!

    代码:

     public class LinkifyActivity extends Activity {
         TextView url;
         EditText urlTwo;

         @Override
         protected void onCreate(Bundle savedInstanceState) {
         // TODO Auto-generated method stub
             super.onCreate(savedInstanceState);
             this.setContentView(R.layout.linkify);
             url = (TextView)findViewById(R.id.textOne);
             urlTwo = (EditText)findViewById(R.id.editOne);
             urlTwo.setOnKeyListener(new EditText.OnKeyListener(){

             public boolean onKey(View v, int keyCode, KeyEvent event) {
                 url.setText(urlTwo.getText().toString());
                 return false;
             } 
             });
         } 
    }

  • 相关阅读:
    关于表单的jQuery练习
    jQuery中的综合动画
    jQuery中自定义简单动画的实现
    清除浮动
    定位
    盒子模型
    笔记
    笔记
    翻页
    DOM
  • 原文地址:https://www.cnblogs.com/qingblog/p/2530367.html
Copyright © 2011-2022 走看看