Android UIの初心者です...基本的に画像ビュー、画像ボタン(特定のロジックが満たされるまで非表示)、および下部にある別の画像ビューである以下のレイアウトを取得しました。
このレイアウトはldpiデバイスでは正常に機能しますが、他のデバイスでは見栄えが悪くなります...また、画像の品質に影響するように、高さを変更して画像のサイズを変更する必要がありました。
動作する標準ビューを使用してこれを解決するにはどうすればよいですか?
<?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" >
<ImageView
android:id="@+id/welcomeTutorialImage"
android:layout_width="wrap_content"
android:layout_height="250dp"
android:contentDescription="@string/welcome_tutorial"
android:src="@drawable/welcome_tutorial_browse" />
<ImageButton
android:id="@+id/welcome_tutorial_start_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/welcomeTutorialImage"
android:layout_centerInParent="true"
android:layout_centerVertical="false"
android:adjustViewBounds="true"
android:background="@android:color/transparent"
android:contentDescription="@null"
android:src="@drawable/btn_startsavingstatic" />
<ImageView
android:id="@+id/welcomeTutorialProgressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/welcome_tutorial_start_btn"
android:layout_centerInParent="true"
android:contentDescription="@string/welcome_tutorial"
android:src="@drawable/welcome_tutorial_bar1" />
</RelativeLayout>