1

こんにちは、私は 1 つの医療アプリを作成しました。それはうまくいっています。アプリ画面の中央に 1 つのロゴを配置しました。ロゴのサイズの高さと幅は 70x70 で、エミュレータの画面解像度は 900 x 800 です。画面の解像度を変更すると、ロゴのサイズも動的に変更したいと考えています。これは、画面の解像度に応じてロゴを設定する方法に疑問がありますか?

コード:

public class ImageviewAppActivity extends Activity {

    private ImageView img; 
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        img =(ImageView) findViewById(R.id.imagetest);
        img.setMaxWidth(20);
        img.setMaxHeight(100);


    }
}

xml: main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/imagetest"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_launcher" />

</LinearLayout>
4

2 に答える 2

3

ほら、解像度の違いに応じてロゴのサイズを設定してから、使用してみる必要があると思います

DisplayMetrics metrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(metrics);
float density = metrics.density;

密度は float であり、その値は画面サイズごとに変更されます...

だから、あなたが持っているなら

240*320 density is 0.5
320*480 density is 1.0
480*800 density is 1.5

のような密度を使用してサイズを設定します。 img.setMaxHeight(density*100);

また、複数の画面サポートをマニフェスト ファイルに入れます...複数画面のサポート

于 2012-05-19T08:33:32.797 に答える
1

よくわかりませんが、dpi によって異なる画面解像度で遊ぶことができます。プロジェクトでは、画面解像度に応じてデバイスから自動的にロードされるさまざまな解像度のさまざまな画像をプロジェクトに配置できるさまざまな描画可能フォルダーを作成できます。

http://developer.android.com/guide/practices/screens_support.html
于 2012-05-19T08:32:28.327 に答える