EX07_12.java
上传用户:vip_99
上传日期:2021-03-27
资源大小:61159k
文件大小:1k
源码类别:

android开发

开发平台:

Java

  1. package irdc.ex07_12;
  2. import android.app.Activity;
  3. import android.os.Bundle;
  4. import android.widget.TextView;
  5. public class EX07_12 extends Activity
  6. {
  7.   private TextView TextView01;
  8.   /** Called when the activity is first created. */
  9.   @Override
  10.   public void onCreate(Bundle savedInstanceState)
  11.   {
  12.     super.onCreate(savedInstanceState);
  13.     setContentView(R.layout.main);
  14.     TextView01 = (TextView) findViewById(R.id.TextView01);
  15.     /* 取得短信传来的bundle */
  16.     Bundle bunde = this.getIntent().getExtras();
  17.     if (bunde != null)
  18.     {
  19.       String str = bunde.getString("TextView_Text");
  20.       TextView01.setText(str);
  21.     }
  22.     else
  23.     {
  24.       finish();
  25.     }
  26.   }
  27. }