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

Android--OnKeyListner

时间:2015-03-05 19:37:04      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:android   onkeylistener   

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/text"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"/>

    <EditText
        android:id="@+id/edit"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"/>

</LinearLayout>

.java代码如下:

package org.lxh.demo;


import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.View.OnFocusChangeListener;
import android.view.View.OnKeyListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;


public class Hello extends Activity {
<span style="white-space:pre">	</span>private TextView txt=null;
<span style="white-space:pre">	</span>private EditText edit=null;
<span style="white-space:pre">	</span>public void onCreate(Bundle savedInstanceState) {
<span style="white-space:pre">		</span>super.onCreate(savedInstanceState); // 生命周期方法
<span style="white-space:pre">		</span>super.setContentView(R.layout.main); // 设置要使用的布局管理器
<span style="white-space:pre">		</span>this.edit=(EditText)super.findViewById(R.id.edit);
<span style="white-space:pre">		</span>this.txt=(TextView)super.findViewById(R.id.text);
<span style="white-space:pre">		</span>this.edit.setOnKeyListener(new OnKeyListenerImpl());


<span style="white-space:pre">	</span>}
<span style="white-space:pre">	</span>private class OnKeyListenerImpl implements OnKeyListener{


<span style="white-space:pre">		</span>public boolean onKey(View arg0, int arg1, KeyEvent arg2) {
<span style="white-space:pre">			</span>String str=Hello.this.edit.getText().toString();
<span style="white-space:pre">			</span>Hello.this.txt.setText(str);
<span style="white-space:pre">			</span>return false;
<span style="white-space:pre">		</span>}
<span style="white-space:pre">		</span>
<span style="white-space:pre">	</span>}
}

运行如下:

技术分享

Android--OnKeyListner

标签:android   onkeylistener   

原文地址:http://blog.csdn.net/yayun0516/article/details/44084903

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