Androidで画像ビューの画像をある角度で回転させる方法は?
この例は、画像ビューで画像をある角度で回転させる方法を示しています。
ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。
ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="https://schemas.android.com/apk/res/android" android:id="@+id/parent" xmlns:tools="https://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" android:gravity="center" android:orientation="vertical"> <ImageView android:id="@+id/imageView" android:src="@mipmap/ic_launcher" android:layout_width=" wrap_content" android:layout_height=" wrap_content" /> <TextView android:id="@+id/textChanger" android:layout_margin="20dp" android:textAlignment="center" android:text="Initial text" android:layout_width="match_parent" android:layout_height="wrap_content" /> </LinearLayout>
上記のコードでは、画像ビューとテキストビューを使用しています。ユーザーがテキストビューをクリックすると、画像は20度の角度に回転します。
ステップ3 −次のコードをsrc / MainActivity.java
に追加しますpackage com.example.andy.myapplication; import android.graphics.Bitmap; import android.graphics.Matrix; import android.os.Build; import android.os.Bundle; import android.os.Handler; import android.support.annotation.RequiresApi; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.ImageView; import android.widget.TextView; public class MainActivity extends AppCompatActivity { int view = R.layout.activity_main; TextView textChanger; ImageView imageView; @RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN) @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(view); textChanger = findViewById(R.id.textChanger); imageView=findViewById(R.id.imageView); textChanger.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { roateImage(imageView); } }); } private void roateImage(ImageView imageView) { Matrix matrix = new Matrix(); imageView.setScaleType(ImageView.ScaleType.MATRIX); //required matrix.postRotate((float) 20, imageView.getDrawable().getBounds().width()/2, imageView.getDrawable().getBounds().height()/2); imageView.setImageMatrix(matrix); } }
上記のコードでは、roateImage()を使用して、以下に示すようにimageviewを渡す必要があります-
Matrix matrix = new Matrix(); imageView.setScaleType(ImageView.ScaleType.MATRIX); //required matrix.postRotate((float) 20, imageView.getDrawable().getBounds().width()/2, imageView.getDrawable().getBounds().height()/2); imageView.setImageMatrix(matrix);
アプリケーションを実行してみましょう。実際のAndroidモバイルデバイスをコンピューターに接続していると思います。 Android Studioからアプリを実行するには、プロジェクトのアクティビティファイルの1つを開き、ツールバーの[実行]アイコンをクリックします。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します-
上記のコードでは、これはデフォルトの画面です。ユーザーが「初期テキスト」テキストビューをクリックすると、以下に示すように20度回転します-
-
Androidでスムーズな画像回転を作成するにはどうすればよいですか?
この例は、Androidでスムーズな画像回転を作成する方法を示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="https://sch
-
Androidでアスペクト比を維持するためにImageViewで画像を拡大縮小するにはどうすればよいですか?
この例は、Androidでアスペクト比を維持するためにImageViewで画像を拡大縮小する方法を示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。 <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.