欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

android 学习2 imageView

程序员文章站 2022-05-31 11:45:37
...

有两种方式

 

 首先找一个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);即可

运行:

android 学习2 imageView

相关标签: Android XML