大きなテーブル画像を持つAndroidアプリのデザインがあります(下のA、B画面を参照)。これは、必要なすべてのサイズ(mdpi、hdpi、xhdpi)の画像としてAとBがすでにあることを意味します。
私の問題は、AIの内部にスクロールビューまたはアイテムのリストを配置する必要があることですが、それらをAイメージより大きくしたくないということです。私の現在のレイアウトは次のようなものです:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background">
<RelativeLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
// Some elements here
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
// Some elements here
</RelativeLayout>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="center_horizontal">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/A_background"/>
<ScrollView
android:id="@+id/scrollview"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/scrollview_container"
android:orientation="vertical"
android:gravity="center_horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"/>
</ScrollView>
</RelativeLayout>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="center_horizontal">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/B_background"/>
</RelativeLayout>
</LinearLayout>
スクロールビューに多くのアイテムがある場合、A が拡大します。画像がぼやけているため、A を以前と同じ高さにする必要があります。