-1
你能幫我編碼嗎?如何更改所選新圖像的描述文字?
所以,我想在每次選擇新圖像時都改變文字巫婆的位置。
例如:
我的應用程序就像特拉維斯的壁紙應用程序的教程。 - >http://www.youtube.com/watch?v=oiCKnevQLWU 我想在每次選擇新圖像時更改文本。
謝謝您的協助!代碼
部分:
public void onClick(View v) {
// TODO Auto-generated method stub
switch (v.getId()){
case R.id.image1:
display.setImageResource(R.drawable.image1);
toPhone = R.drawable.image1;
break;
case R.id.image2:
display.setImageResource(R.drawable.image2);
toPhone = R.drawable.image2;
break;
謝謝,但我的代碼工作正常,qiuckly更改圖像。但是我需要幫助的是,如何在TextView下面的圖像中更改文本。我該怎麼做? – androider
textview.setText(「new text here」); 這可能工作 –