热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

在java源文件中指定TextView文本显示内容

在java源文件中指定TextView文本显示内容在java源文件当中指定控件的文本显示内容,我们需要得到一个控件的对象即TextView的对象,如果在java源文件中我们想要得到这个指定的控件,我们

在java源文件中指定TextView文本显示内容

在java源文件当中指定控件的文本显示内容,我们需要得到一个控件的对象即TextView的对象,如果在java源文件中我们想要得到这个指定的控件,我们就需要,为当前的布局文件中的控件添加ID;才使得我们的控件对象可以在java源文件中找到。

核心代码:

Java源文件代码:

package com.example.first;


import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.widget.TextView;




public class MainActivity extends Activity {
TextView text;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
text=(TextView)this.findViewById(R.id.main_hello);
text.setText(R.string.hello_world);
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}


}


布局文件代码:

    xmlns:tools="http://schemas.android.com/tools"
    android:layout_
    android:layout_
    tools:cOntext=".MainActivity" >


            android:id="@+id/main_hello"
        android:layout_
        android:layout_
        android:layout_centerHorizOntal="true"
        android:layout_centerVertical="true"
        android:text="好吗?"
        />
    




推荐阅读
author-avatar
mobiledu2502871817
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有