我想用旋轉的ImageView填充屏幕。如何用ImageView填充屏幕以及如何旋轉ImageView的問題在網站上單獨進行了多次回答。我的XML代碼如下所示。ImageView旋轉+填充屏幕
<ImageView
android:id="@+id/video_frame"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="fitCenter"
android:rotation="270"
/>
的問題在於後的圖像已經裝在沒有施加旋轉和我結束了不填滿屏幕圖像旋轉發生。
我當然可以只旋轉圖像(和刪除ImageView的旋轉)如下:
Matrix mMatrix = new Matrix();
mMatrix.postRotate(-90);
ImageView video = (ImageView)findViewById(R.id.video_frame);
Bitmap frame = BitmapFactory.decodeFile("path/to/file.jpg");
Bitmap frame2 = Bitmap.createBitmap(frame, 0, 0, frame.getWidth(), frame.getHeight(), mMatrix, true);
video.setImageBitmap(frame2);
這裏的問題是,應用程序是實時的,我服每秒multipe幀(20+) 。每幀的旋轉看起來很重,即使在這種情況下圖像填滿了屏幕,結果仍然滯後,並且沒有矩陣旋轉那樣響應。
因此,我的問題是,如果我能解決這個問題,只用XML或以任何其他方式沒有旋轉我想要顯示的每個圖像?
感謝那些工作。我必須在'''''RotateLayout'''中設置'''layout_height =「fill_parent」'''(它成爲90度旋轉後的寬度)。 – rex123