符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
基本知识点:OnFocuChangeListener事件
创新互联专注于陕州网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供陕州营销型网站建设,陕州网站制作、陕州网页设计、陕州网站官网定制、小程序设计服务,打造陕州网络公司原创品牌,更为您提供陕州网站排名全网营销落地服务。一、界面
打开“res/layout/activity_main.xml”文件。
1、分别从工具栏向activity拖出2个编辑框EditText。控件来自Form Widgets。
2、打开activity_main.xml文件。
android:layout_height="match_parent"
android:orientation="vertical" >
android:layout_width="190dp"
android:layout_height="wrap_content"
android:text="@string/mobile" />
android:layout_width="190dp"
android:layout_height="wrap_content"
android:text="@string/address" >
二、OnItemSelectedListener事件
1、打开“src/com.genwoxue.onfocuchange/MainActivity.java”文件。
然后输入以下代码:
package com.example.hw;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.View.OnFocusChangeListener;
import android.widget.EditText;
import android.widget.Toast;
public class MainActivity extends Activity {
//声明EditText对象
private EditText etMobile = null;
private EditText etAddress = null;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//获取EditText
etMobile = (EditText) super.findViewById(R.id.mobile);
etAddress = (EditText) super.findViewById(R.id.address);
//注册OnClick、OnFocusChange监听器
etMobile.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
etMobile.setText("");//清空输入框
}
});
etMobile.setOnFocusChangeListener(new OnFocusChangeListener() {
@Override
public void onFocusChange(View view, boolean hasFocus) {
if(view.getId()==etMobile.getId()){
Toast.makeText(getApplicationContext(), "手机文本框获得焦点", Toast.LENGTH_LONG).show();
}
}
});
etAddress.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
etAddress.setText("");
}
});
etAddress.setOnFocusChangeListener(new OnFocusChangeListener() {
@Override
public void onFocusChange(View view, boolean hasFocus) {
if(view.getId()==etAddress.getId()){
Toast.makeText(getApplicationContext(), "地址文本框获得焦点!", Toast.LENGTH_LONG).show();
}
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
2、最终效果如下:
(获取焦点)
(单击清除文本)
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。