我使用Eclipse 4.3.1.v20130911-1000定位到Android 4.2.2级别17。我创建了一个使用HAXM模拟Intel Atom(x86)的AVD。这就是它的样子......
而且,这是我的活动代码的片段......
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="1" >
<ImageView
android:id="@+id/bannerImage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:contentDescription="@string/banner"
android:scaleType="fitXY"
android:src="@drawable/logo" >
</ImageView>
<CheckBox android:layout_height="wrap_content" android:layout_width="match_parent" android:id="@+id/expiredcheckBox" android:text="@string/show_me_expired_content"></CheckBox>
<TextView android:id="@+id/textLabel1" android:textAppearance="?android:attr/textAppearanceMedium" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/category_"></TextView>
<Spinner android:layout_height="wrap_content" android:layout_width="match_parent" android:id="@+id/comboBox" android:entries="@array/Spinner_array" android:prompt="@string/spinnerPrompt"></Spinner>
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="visible" >
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/linearLayoutScroll" android:orientation="vertical"></LinearLayout>
</ScrollView>
</LinearLayout>
活动代码动态地将TextView对象添加到ScrollView中的“linearLayoutScroll”。我启动模拟器,调试我的程序,但是,模拟器不会使用鼠标中键滚动。我之前遇到过这个问题,但是,对于我的生活,我不记得如何解决它。有人可以对此有所了解吗?