0

私はアプリに取り組んでおり、ギャラリーから写真をロードし(写真はデバイスのカメラから取得されます)、他のアプリ関連機能を実行して保存します。私が直面している問題は、ロードする画像が垂直方向と水平方向に圧縮されることですこれにより、画像が縮小されますが、必要ありません.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>

この問題を解決するために私を助けてください!!! よろしくお願いします

4

1 に答える 1

1

FrameLayout は高さの wrap_content に設定されており、ImageView は高さの match_parent に設定されています。だから、それはちょっと矛盾しています。ハハ。また、相対レイアウトでウェイトをどのように使用しているのかわかりません。LinearLayout を使用したときの残り物でない限り。そして、あなたの previous_btn は、relativelayout セットに場所がありません。

于 2012-05-29T22:51:02.640 に答える