ダイアログで表示する。
package com.GetTextTest; import android.app.Activity; import android.app.AlertDialog; import android.os.Bundle; import android.widget.TextView; public class GetTextTest extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); TextView textView = (TextView) findViewById(R.id.hello); new AlertDialog.Builder(this).setMessage(textView.getText()).show(); } }
0 件のコメント:
コメントを投稿