求解,怎样改,R.id老是出错

zhunaoke822 2012-05-04 11:37:07
package edu.hrbeu.landon;



import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

@SuppressWarnings("unused")
public class landon extends Activity {

public void onCreate1(Bundle savedInstanceState) {


Button Button01 = (Button)findViewById(R.id.Button01);
Button01.setOnClickListener(new OnClickListener(){
public void onClick(View view){
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("schemodemo://edu.hrbeu/path"));
startActivity(intent);
}
});
}
public void onCreate11(Bundle savedInstanceState) {


Button Button = (Button)findViewById(R.id.Button02);
Button.setOnClickListener(new OnClickListener(){
public void onClick(View view){
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("schemodemo://edu.hrbeu/path"));
startActivity(intent);
}
});
}
public void onCreate(Bundle savedInstanceState) {


Button Button = (Button)findViewById(R.id.Button03);
Button.setOnClickListener(new OnClickListener(){
public void onClick(View view){
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("schemodemo://edu.hrbeu/path"));
startActivity(intent);
}
});
}
}
...全文
409 8 打赏 收藏 转发到动态 举报
AI 作业
写回复
用AI写文章
8 条回复
切换为时间正序
请发表友善的回复…
发表回复
CyberLogix 2012-05-06
  • 打赏
  • 举报
回复
不自己要改,会自动生成的
scutLiu 2012-05-06
  • 打赏
  • 举报
回复
没看到布局里面有Button03这个id啊


另外,布局文件中id尽量不要使用大写的,尽可能以小写加下划线的方式组织id
aBOUNTWINTER 2012-05-06
  • 打赏
  • 举报
回复
1.layout文件只能是小写字母与下划线的组合;

2.其他的xml文件大小写都无所谓。
AMinfo 2012-05-05
  • 打赏
  • 举报
回复
在布局文件里面定义Button03,布局文件xml里面的内容复制上来看看,
卖萌 2012-05-05
  • 打赏
  • 举报
回复
要确保所有资源文件不报错,R文件才会正确执行。楼主可以先检查一下自己的资源文件。然后clean一下看看
Allen_hust 2012-05-05
  • 打赏
  • 举报
回复
要不就clean一下再看
horsttnann 2012-05-05
  • 打赏
  • 举报
回复
要确保所有资源文件不报错,R文件才会正确执行。楼主可以先检查一下自己的资源文件。
zhunaoke822 2012-05-05
  • 打赏
  • 举报
回复
以下就是布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<RelativeLayout
android:id="@+id/widget34"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
>
<Button
android:id="@+id/btnAct01"
android:layout_width="95px"
android:layout_height="43px"
android:text="管理员登录"
android:layout_alignTop="@+id/widget37"
android:layout_toRightOf="@+id/widget37"
>
</Button>
<Button
android:id="@+id/btnAct02"
android:layout_width="100px"
android:layout_height="41px"
android:text="普通用户登录"
android:layout_below="@+id/widget36"
android:layout_alignLeft="@+id/widget36"
>
</Button>
<EditText
android:id="@+id/widget36"
android:layout_width="163px"
android:layout_height="wrap_content"
android:padding="9px"
android:textSize="18sp"
android:layout_alignTop="@+id/widget35"
android:layout_alignLeft="@+id/widget33"
>
</EditText>
<TextView
android:id="@+id/widget35"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="密码:"
android:layout_below="@+id/widget39"
android:layout_alignParentLeft="true"
>
</TextView>
<Button
android:id="@+id/btnAct03"
android:layout_width="78px"
android:layout_height="wrap_content"
android:text="注册新用户"
android:layout_alignBottom="@+id/widget33"
android:layout_toRightOf="@+id/widget33"
>
</Button>
<EditText
android:id="@+id/widget33"
android:layout_width="165px"
android:layout_height="wrap_content"
android:textSize="18sp"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/widget31"
>
</EditText>
<TextView
android:id="@+id/widget31"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="用户名:"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
>
</TextView>
</RelativeLayout>

</LinearLayout>
内容概要:本文详细介绍了一个基于C++语言开发的疫苗接种和儿童体检系统的设计与实现全过程,涵盖项目背景、目标意义、架构设计、核心功能模块、数据库实现、API接口规范、前后端代码实现及部署应用等多个方面。系统采用分层架构与模块化设计,实现了儿童信息管理、疫苗接种记录、体检数据录入、多用户权限控制、数据统计分析、异常预警、安全加密与日志审计等核心功能,并通过MySQL数据库进行数据持久化,结合Qt实现图形化界面,支持高并发、数据脱敏、多平台对接与自动化部署。项目强调数据安全、隐私保护与系统可扩展性,适用于社区医疗、疾控中心、学校及医院等场景。; 适合人群:具备C++编程基础,熟悉数据库操作和基本软件工程流程的开发人员、计算机及相关专业学生、医疗信息化项目开发者,以及希望了解完整医疗管理系统开发流程的技术人员。; 使用场景及目标:①学习如何使用C++构建完整的医疗信息管理系统;②掌握数据库设计、前后端交互、权限控制、多线程处理和GUI开发等关键技术;③应用于社区卫生服务、学校健康管理、疾控数据统计等实际业务场景,提升儿童健康管理水平;④作为课程设计、毕业设计或实际项目的参考模板。; 阅读建议:建议读者结合文档中的代码示例与数据库脚本,搭建本地开发环境进行实践操作,重点关注系统架构设计、模块解耦、安全机制与前后端交互逻辑,深入理解各功能模块的实现原理,并尝试在此基础上进行功能扩展,如接入移动端或增加AI分析模块。

80,471

社区成员

发帖
与我相关
我的任务
社区描述
移动平台 Android
androidandroid-studioandroidx 技术论坛(原bbs)
社区管理员
  • Android
  • yechaoa
  • 失落夏天
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧