我目前正在为博物馆做一个应用程序,在这个应用程序中,必须有一个时间线。我把时间线做成了一个jpg文件。我试图在一个图像视图中显示这个文件(图片 1993x239 像素),它是一个滚动视图,但是:
- 在我的手机 LG Optimus L3 (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>