我正在尝试将多个图像添加到android中的垂直滚动视图。
一张图片可以正常工作,但如果我放了两张图片,
02-19 19:56:29.992: E/AndroidRuntime(5036): FATAL EXCEPTION: main
02-19 19:56:29.992: E/AndroidRuntime(5036): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.con4/com.example.con4.Options}: android.view.InflateException: Binary XML file line #86: Error inflating class <unknown>
02-19 19:56:29.992: E/AndroidRuntime(5036):
我不太清楚问题是什么。我也尝试使用不同的图像来尝试。我认为我的xml存在问题
xml如下
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".Options" >
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView2"
android:layout_alignParentRight="true"
android:layout_below="@+id/textView2" >
<LinearLayout
android:id="@+id/lin"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/help"
android:adjustViewBounds="true" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/helpa"
android:adjustViewBounds="true"
/>
</LinearLayout>
</ScrollView>
</RelativeLayout>