1. ホーム
  2. java

ラッピングしない画像表示 目次

2023-11-16 09:59:15

質問

ImageViewで この画像 :

<ImageView
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:scaleType="fitStart"
    android:src="@drawable/oncmap"/>

で、そのすぐ下にTextViewがあります。残念ながら、デバイスの画面サイズによって、ビューの下に押しやられたり、ビューからはみ出したりします。

http://i.imgur.com/CuVFK5P.png

http://i.imgur.com/6wzMebV.jpg

ハックすることはできますが、それは避けたいのです......。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="16dp"
android:orientation="vertical"
tools:context="MapFragment">

<ImageView
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:src="@drawable/oncmap"/>

<TextView
    android:layout_height="wrap_content"
    android:layout_width="fill_parent"
    android:text="Neptune"
    style="@style/sectionHeader"/>

<TextView
    android:layout_height="wrap_content"
    android:layout_width="fill_parent"
    android:paddingLeft="8dp"
    android:paddingRight="8dp"
    android:paddingTop="16dp"
    android:text="@string/info"
    style="@style/text"/>

どのように解決するのですか?

ImageViewに以下のフィールドを追加します。

android:scaleType="fitXY"
android:adjustViewBounds="true"