私はアプリに取り組んでおり、ギャラリーから写真をロードし(写真はデバイスのカメラから取得されます)、他のアプリ関連機能を実行して保存します。私が直面している問題は、ロードする画像が垂直方向と水平方向に圧縮されることですこれにより、画像が縮小されますが、必要ありません.xmlファイルに次のコードを使用しています
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="bottom"
android:orientation="vertical" >
<FrameLayout
android:id="@+id/frame"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/previous_btn"
android:layout_weight="0.88" >
<ImageView
android:id="@+id/imageView"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:scaleType="matrix" />
</FrameLayout>
<Button
android:id="@+id/previous_btn"
android:layout_width="100dip"
android:layout_height="wrap_content"
android:text="Previous" />
<Button
android:id="@+id/next_btn"
android:layout_width="100dip"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/previous_btn"
android:text="Next" />
<Button
android:id="@+id/button"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_toRightOf="@+id/next_btn"
android:text="Save Picture" />
</RelativeLayout>
この問題を解決するために私を助けてください!!! よろしくお願いします