I'm currently doing an app for a museum, and into this app, there have to be a timeline. I made the timeline into a jpg file. I am trying to display this file (picture 1993x239 px) in an imageView, which is into a Scrollview, however :
- on my phone LG optimus L3 (e400) it works quite well
- on my Nexus 7 tablet, the picture don't appear
how can I do to make it work ?
<?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>