Android UI 初学者问题
我是 Android/java 新手,来自 C#/Visual Studio。 在编写逻辑代码时,从 C# 跳转到 java 并不是太难,但在 UI 方面,我遇到了问题。
我现在已将一个简单的 TextView 添加到我的 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:layout_width="wrap_content" android:editable="true" android:layout_height="wrap_content" android:id="@+id/textView1" android:text="TextView">
</TextView>
</LinearLayout>
现在我想通过代码访问 textView1:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
this.textView1 = (TextView)this.findViewById(android.R.id.textView1);
}
private TextView textView1;
但出现错误:textView1 无法解析。
我做错了什么?
谢谢
詹姆斯
I'm new to Android/java, coming from C#/Visual Studio.
It's not a too hard jump from C# to java while coding the logic, but with the UI, I'm having problems.
I've now added a simple TextView to my 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:layout_width="wrap_content" android:editable="true" android:layout_height="wrap_content" android:id="@+id/textView1" android:text="TextView">
</TextView>
</LinearLayout>
Now I wanted to access the textView1 by code:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
this.textView1 = (TextView)this.findViewById(android.R.id.textView1);
}
private TextView textView1;
but I get the error: textView1 cannot be resolved.
What am I doing wrong?
Thanks
James
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
将 findViewById(android.R.id.textView1) 替换为 findViewById(R.id.textView1);
android.R 是 SDK 的资源包,而 R 是您的应用程序的资源包,它将与成功构建应用程序一起创建。
并将背景颜色设置为xml中的#ffffff ....看起来更有吸引力..
Replace findViewById(android.R.id.textView1) by findViewById(R.id.textView1);
android.R is resorce packege of SDK while R is of your app which will create along with successfully build of app .
and set the background color to #ffffff in xml .... it seems more attractive..
只需使用
R.id.textView1
,而不是android.R.id.textView1
。android
前缀适用于来自 Android 本身的资源,而不是来自您的项目的资源。Instead of
android.R.id.textView1
, just useR.id.textView1
. Theandroid
prefix is for resources from Android itself, rather than from your project.将
findViewById(android.R.id.textView1)
替换为findViewById(R.id.textView1);
android.R 是 SDK 的资源包,而 R 是您的应用程序的资源包将创建并成功构建应用程序。
Replace
findViewById(android.R.id.textView1)
byfindViewById(R.id.textView1);
android.R is resorce packege of SDK while R is of your app which will create along with successfully build of app .
试试这个
try this