iT邦幫忙

0

初學者請問android TextView要如何接變數呢?

  • 分享至 

  • xImage

String str1="abcde";
請問如何讓
TextView顯示str1變數呢?
不知語法要如何寫呢?
謝謝

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

6
mosil
iT邦新手 4 級 ‧ 2012-11-08 21:08:08
最佳解答

定義好你的畫面
TextView showText = (TextView)findViewById(R.id.xxxxx);
showText.setText(str1);

xxxxx是你畫面上 TextView 的 ID

我要發表回答

立即登入回答