android 学习2 imageView_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > android 学习2 imageView

android 学习2 imageView

 2010/9/19 23:32:52  ericjoe  http://coffeef.javaeye.com  我要评论(0)
  • 摘要:有两种方式首先找一个png的图片放在res/drawable文件架下,文件名和扩展名全部用小写(注意),我的文件名称:android.png1.code方式:ImageViewimageView=newImageView(this);imageView.setImageResource(R.drawable.android);//R.drawable.android后面的android是你的图片文件名setContentView(imageView);2,xm方式:修改main.xml添加
  • 标签:android 学习2 imageView

有两种方式

?

?首先找一个png的图片放在res/drawable文件架下,文件名和扩展名全部用小写(注意),我的文件名称:android.png

?

? 1.code方式:

?

ImageView imageView = new ImageView(this);

 imageView.setImageResource(R.drawable.android);//R.drawable.android后面的android是你的图片文件名

 setContentView(imageView);

?

????????

? 2,xm方式:

? 修改main.xml

? 添加:

?<ImageView
???? android:id="@+id/imageview"
???? android:layout_height="wrap_content" //图片原来的size?如果用fill_parent 就会拉伸
??? android:layout_width="wrap_content"
???? android:src="@drawable/android" //注意文件名
??? />

? 代码加入:setContentView(R.layout.main);即可

运行:

发表评论
用户名: 匿名