Android开发:同一ImageView显示不同图片

点击打开链接:http://www.haogongju.net/art/1352228

有时候,我们为了在同一个ImageView中显示不同的图片,往往会使用:

  (条件1) { 
       image.setBackground(R.id.xxx1); 
  } else if (条件2) { 
       image.setBackground(R.id.xxx2); 
  }

  可以用另一个简便的方法实现相同的功能,首先,在res/drawable下建立一个xml文件,内容如下:

  <level-list xmlns:android=“http://schemas.android.com/apk/res/android”>
       <item android:maxLevel=“4”  android:drawable=“@drawable/stat_sys_battery_0” />
       <item android:maxLevel=“14”  android:drawable=“@drawable/stat_sys_battery_10” />
       <item android:maxLevel=“29” android:drawable=“@drawable/stat_sys_battery_20” />
       <item android:maxLevel=“49” android:drawable=“@drawable/stat_sys_battery_40” />
       <item android:maxLevel=“69”  android:drawable=“@drawable/stat_sys_battery_60” />
       <item android:maxLevel=“89” android:drawable=“@drawable/stat_sys_battery_80” />
       <item android:maxLevel=“100” android:drawable=“@drawable/stat_sys_battery_100” />
  </level-list>

  然后在layout中把image view的src设置成已创建好的xml文件,程序中变换图片时,只需要使用:

  imageview.getDrawable().setLevel(50);

  Android会根据level的值自动选择对应的图片。手机显示剩余电量就是用这个方法来显示不同图片的。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
您好,关于Android Studio拍照后ImageView显示图片的问题,可以通过以下步骤来实现: 1. 在AndroidManifest.xml文件中添加相机和写入外部存储的权限: ``` <uses-permission android:name="android.permission.CAMERA"/> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> ``` 2. 在布局文件中添加一个ImageView显示图片: ``` <ImageView android:id="@+id/imageView" android:layout_width="match_parent" android:layout_height="wrap_content" android:adjustViewBounds="true" android:contentDescription="@string/image_desc"/> ``` 3. 在Activity中添加一个按钮来触发拍照功能,同时在onCreate方法中获取ImageView的引用: ``` private ImageView imageView; private static final int REQUEST_IMAGE_CAPTURE = 1; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); imageView = findViewById(R.id.imageView); Button button = findViewById(R.id.button); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { dispatchTakePictureIntent(); } }); } ``` 4. 在Activity中添加拍照的处理逻辑,使用Intent来调用系统自带的相机应用,拍完照后将照片保存到指定路径,并显示ImageView上: ``` private File photoFile = null; private String currentPhotoPath = null; private void dispatchTakePictureIntent() { Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); if (takePictureIntent.resolveActivity(getPackageManager()) != null) { try { photoFile = createImageFile(); } catch (IOException ex) { // Error occurred while creating the File ex.printStackTrace(); } if (photoFile != null) { Uri photoURI = FileProvider.getUriForFile(this, "com.example.android.fileprovider", photoFile); takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI); startActivityForResult(takePictureIntent, REQUEST_IMAGE_CAPTURE); } } } @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { if (requestCode == REQUEST_IMAGE_CAPTURE && resultCode == RESULT_OK) { // Set the image to ImageView setPic(); } } private File createImageFile() throws IOException { // Create an image file name String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss", Locale.getDefault()).format(new Date()); String imageFileName = "JPEG_" + timeStamp + "_"; File storageDir = getExternalFilesDir(Environment.DIRECTORY_PICTURES); File image = File.createTempFile( imageFileName, /* prefix */ ".jpg", /* suffix */ storageDir /* directory */ ); // Save a file: path for use with ACTION_VIEW intents currentPhotoPath = image.getAbsolutePath(); return image; } private void setPic() { // Get the dimensions of the View int targetW = imageView.getWidth(); int targetH = imageView.getHeight(); // Get the dimensions of the bitmap BitmapFactory.Options bmOptions = new BitmapFactory.Options(); bmOptions.inJustDecodeBounds = true; BitmapFactory.decodeFile(currentPhotoPath, bmOptions); int photoW = bmOptions.outWidth; int photoH = bmOptions.outHeight; // Determine how much to scale down the image int scaleFactor = Math.min(photoW / targetW, photoH / targetH); // Decode the image file into a Bitmap sized to fill the View bmOptions.inJustDecodeBounds = false; bmOptions.inSampleSize = scaleFactor; bmOptions.inPurgeable = true; Bitmap bitmap = BitmapFactory.decodeFile(currentPhotoPath, bmOptions); imageView.setImageBitmap(bitmap); } ``` 以上就是通过Android Studio实现拍照后ImageView显示图片的步骤,如果还有问题可以继续提问哦。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值