SORU
23 ŞUBAT 2011, ÇARŞAMBA


Nasıl bir İmageView görüntüsünü değiştirebilir miyim?

Sadece android öğrenmeye başladım. Ve Nasıl ImageView bir görüntüsünü değiştirebilir miyim? bilmiyorum yani düzen kurulmuş bazı Görüntü var ama kodlama ile bu imajı değiştirmek istiyorum nasıl yapmalıyım ?

Burada xml dosyası

<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:background="#cc8181"
 >

<ImageView
  android:id="@ id/image"
  android:layout_width="50dip"
  android:layout_height="fill_parent" 
  android:src="@drawable/icon"
  android:layout_marginLeft="3dip"
  android:scaleType="center"/>

cevap için teşekkürler.

CEVAP
23 ŞUBAT 2011, ÇARŞAMBA


Eğer imageview xml dosyası kullanarak oluşturdu eğer bu adımları izleyin.

Çözüm 1:

1. Adım: XML dosyası Oluşturmak

<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:background="#cc8181"
  >

  <ImageView
      android:id="@ id/image"
      android:layout_width="50dip"
      android:layout_height="fill_parent" 
      android:src="@drawable/icon"
      android:layout_marginLeft="3dip"
      android:scaleType="center"/>

</LinearLayout>

Adım 2: bir Etkinlik oluşturun

ImageView img= (ImageView) findViewById(R.id.image);
img.setImageResource(R.drawable.my_image);

Çözüm 2:

Java sınıfından imageview oluşturuldu

ImageView img = new ImageView(this);
img.setImageResource(R.drawable.my_image);

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • 365multimedia

    365multimedi

    26 ŞUBAT 2009
  • Artorius FullPower

    Artorius Ful

    29 Temmuz 2007
  • optionalinfo

    optionalinfo

    29 EKİM 2005