⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 otheractivity.java

📁 Android开发精典案例60个
💻 JAVA
字号:
/**
 * 
 */
package com.openother;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.widget.TextView;

/**
 * @author Himi
 *
 */
public class OtherActivity extends Activity {
	private TextView tv;
	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		tv = new TextView(this); 
		setContentView(tv); 
		//得到当前Activity的意图
		Intent intent = this.getIntent();
		//获取数据
		String str = intent.getStringExtra("Main");
		//将获取到的数据设置成TextView的文本
		tv.setText(str);
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -