imagefile源码在java文件和xml文件中?

时间:2015-05-10 21:16:40

标签: java android xml android-studio

查看下面的代码;

ImageView theImageView = (ImageView) theView.findViewById(R.id.imageView1);

theImageView.setImageResource(R.drawable.dot);

如果我们在xml文件中建立了图像的源(android:src),那么第二行是否必要? XML如下所示;

<ImageView
    android:layout_width="25dp"
    android:layout_height="25dp"
    android:layout_marginLeft="10dp"
    android:layout_marginTop="25dp"
    android:src="@drawable/dot"
    android:id="@+id/imageView1"/>

1 个答案:

答案 0 :(得分:0)

没有。您可以使用XML或Java代码执行此操作。你不必两次。

如果您已经定义了ImageView并设置了图像,那么您甚至不必在Java代码(第1行)中获取它的引用,除非您想要更改某些内容。