こんにちは、私は 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>