0

私のアプリでは、画像を使用しています。任意の密度の画面サイズで、画像の幅が画面の幅を超えないようにします。それを達成する方法と、異なる解像度の画像ではなく、すべてのアンドロイド密度に対して1つの画像のみを使用しているため、何が問題になりますか?

4

1 に答える 1

0

これを試してみてください。ただし、解像度ごとにサイズ変更された画像が必要になります

hdpi、ldpi、mdpi、および xdpi の解像度

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/title_bar"
    android:gravity="center_vertical" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:contentDescription="@string/desc"
        android:src="@drawable/YourPicSource" />

</RelativeLayout>
于 2012-08-10T10:45:13.310 に答える