私はこれで一日中苦労しました。私はLinearLayoutに3つの画像ビューが必要です。あなたが見ることができるように、スケールは全く正しくありません。すべてのアイコンのサイズは24x24ピクセルです。私のImageViewsの中のさまざまなプロパティーを試してみました。 weight
とscaleType
属性はあなたのビューをめちゃくちゃにされているようだ、LinearLayoutのImageViews - スケールを台無しにする
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginTop="45dp"
android:orientation="horizontal">
<ImageView
android:id="@+id/tList"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:scaleType="fitXY"
android:background="@drawable/ic_home_black_24px" />
<ImageView
android:id="@+id/ist"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:scaleType="fitXY"
android:background="@drawable/ic_help_black_24px"
/>
<ImageView
android:id="@+id/ations"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:scaleType="fitXY"
android:background="@drawable/ic_settings_black_24px"
/>
</LinearLayout>
あなたは、各 'ImageView'の'「fill_parent」 '属性を変更しようとしたことがありますか?塗りつぶし親は 'ImageView'を強制的にキューの親の幅と高さに合わせるようにします。 – pamobo0609
あなたのために行く最良の方法は、幅と高さに' wrap_content'属性を使うか、 'dp'を使うことです。 '24px'の等価物 – pamobo0609
まず最初にwrap_contentに設定しましたが、それはそれ以上改善されませんでした。私はlayout_widthとlayout_heightを24dpに設定しようとしました。まだスケールを台無しに... –