0

私は現在美術館向けのアプリを作成していますが、このアプリにはタイムラインが必要です。タイムラインをjpgファイルにしました。このファイル(画像1993x239 px)をimageViewに表示しようとしていますが、これはScrollviewに含まれています。

  • 私の電話ではLGoptimusL3(e400)それは非常にうまく機能します
  • Nexus 7タブレットでは、画像が表示されません

それを機能させるにはどうすればよいですか?

<?xml version="1.0" encoding="utf-8"?>
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="fill_parent" >

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="fill_parent" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:contentDescription="@string/frise"
        android:src="@drawable/frise" />
</LinearLayout>
</HorizontalScrollView>
4

0 に答える 0