博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android 页面无法点击,为什么点击不跳转到下一界面,哪位大神帮瞅瞅
阅读量:6502 次
发布时间:2019-06-24

本文共 1477 字,大约阅读时间需要 4 分钟。

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼

package com.example.udp;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.view.Menu;import android.widget.Button;import android.widget.EditText;public class Temp extends Activity {private Button mButtonShow;private Button mButtonHide;private static Intent service;private EditText temptext2 = null;private EditText temptext4 = null;private EditText temptext6 = null;private EditText temptext8 = null;private EditText temptext10 = null;@Overrideprotected void onCreate(Bundle savedInstanceState) {// TODO Auto-generated method stubsuper.onCreate(savedInstanceState);setContentView(R.layout.temp); temptext2 = (EditText)findViewById(R.id.temptext2);temptext4 = (EditText)findViewById(R.id.temptext4);temptext6 = (EditText)findViewById(R.id.temptext6);temptext8 = (EditText)findViewById(R.id.temptext8);temptext10 = (EditText)findViewById(R.id.temptext10);Intent intent = this.getIntent();Bundle bundle = intent.getExtras();String temp1 = bundle.getString("temptext2");String temp2 = bundle.getString("temptext4");String temp3 = bundle.getString("temptext6"); String temp4 = bundle.getString("temptext8");String temp5 = bundle.getString("temptext10");temptext2.setText(temp1);temptext4.setText(temp2);temptext6.setText(temp3);temptext8.setText(temp4);temptext10.setText(temp5);}@Overridepublic boolean onCreateOptionsMenu(Menu menu) {// TODO Auto-generated method stubreturn super.onCreateOptionsMenu(menu);}}

转载地址:http://belyo.baihongyu.com/

你可能感兴趣的文章
身份证工具类
查看>>
JPA增删改查,
查看>>
apache 开启 gzip 压缩服务
查看>>
python mysql
查看>>
开源 免费 java CMS - FreeCMS1.5-建站向导
查看>>
Selenium的延迟等待
查看>>
jquery 1.6以上版本 全选
查看>>
AppCan 学习
查看>>
flask框架
查看>>
《疯狂Java讲义》学习笔记(十)异常处理
查看>>
Lua(Codea) 中 table.insert 越界错误原因分析
查看>>
ELK 5.x日志分析 (二) Elasticserach 5.2 安装
查看>>
sbt配置nexus仓库
查看>>
一次奇怪的AP注册异常问题处理
查看>>
TableStore: 海量结构化数据分层存储方案
查看>>
Unity 4.x游戏开发技巧集锦(内部资料)
查看>>
自适应网页设计
查看>>
获取BT节点信息bittorrent-discovery
查看>>
Centos 7使用vsftpd搭建FTP服务器
查看>>
linux下SVN不允许空白日志提交
查看>>