试试自己 - 使用anyPngYouWant.png放置一个ImageView布局,然后使用
创建一个bitmap.xml<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/anyPngYouWant"
/>
并投入相同的布局......
为什么它们的大小不同?我试图做很多不同的图像,仍然使用源png的wrap_content差异的bitmal.xml大小。我只是希望它们是相同的
布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/anyPngYouWant" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/imageView1"
android:src="@drawable/bitmap" />
</RelativeLayout>
答案 0 :(得分:0)
检查此方法,它获取图像文件的Bitmap对象,然后设置在imageView
上:
File ifile = new File(“PATH/anyPngYouWant.png”);
if(ifile.exists()){
Bitmap bmp = BitmapFactory.decodeFile(ifile.getAbsolutePath());
ImageView iv = (ImageView) findViewById(R.id.imageView1);
iv.setImageBitmap(bmp);
}