gpt4 book ai didi

ImageView 上的 Android 进度条

转载 作者:IT老高 更新时间:2023-10-28 23:29:31 25 4
gpt4 key购买 nike

我正在开发一个应用程序,用户将从相机拍摄照片并将其显示在具有 ImageView 的预览屏幕上。

**CameraCapture.java**

class ButtonClickHandler implements View.OnClickListener
{
public void onClick( View view ){
myVib.vibrate(50);
startCameraActivity();
}
}

protected void startCameraActivity()
{
File filenew = new File( _path );
Uri outputFileUri = Uri.fromFile( filenew );

Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE );
intent.putExtra( MediaStore.EXTRA_OUTPUT, outputFileUri );
intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
startActivityForResult( intent, 0 );
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{
switch( resultCode )
{
case 0:
break;

case -1:
//pictaken++;

onPhotoTaken();

break;
}
}

protected void onPhotoTaken()
{
//pictaken=true;

Intent i = new Intent(CameraCapture.this,Preview.class);
startActivity(i);
}

在我的 Preview 类中,捕获的图片显示在 ImageView 上

**Preview.java**

File imgFile = new File("/sdcard/DCIM/Camera/test.jpg");
if(imgFile.exists()){

// Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath());

ImageView myImage = (ImageView) findViewById(R.id.image);
Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
Matrix mat = new Matrix();
String degree="90";
mat.postRotate(Integer.parseInt(degree));
Bitmap bMapRotate = Bitmap.createBitmap(myBitmap, 0, 0,myBitmap.getWidth(),myBitmap.getHeight(), mat, true);
myImage.setImageBitmap(bMapRotate);
//myImage.setImageBitmap(myBitmap);

}
_image = ( ImageView ) findViewById( R.id.image );

有没有办法在 ImageView 上显示进度条,直到它从 SD 卡加载捕获的图像。提前谢谢:)

最佳答案

把你的 ImageView 和 Progressbar 放在一个 RelativeLayout 中。对于您的 ProgressBar,请使用:

android:layout_centerInParent="true"

它将在 RelativeLayout 中居中,即在 ImageView 上方。您可能还想在图像加载后隐藏 ProgressBar:

progressBar.setVisibility(View.Gone)

当图像被加载时。

示例代码:

 <RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"/>

<ProgressBar
style="?android:attr/progressBarStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:visibility="visible"/>

</RelativeLayout>

关于ImageView 上的 Android 进度条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12341840/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com