我是Android应用程序开发的新手,我正在使用ADT与eclipse。 我在滚动条中包装了所有视图组件,但是当我使用模拟器预览时,我看不到滚动条。目标是7英寸WSVGA(平板电脑)。
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/imageDate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/test_image_date"
android:textAppearance="?android:attr/textAppearanceMedium" />
<ImageView
android:id="@+id/Clouds"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/test_image"
/>
<TextView
android:id="@+id/imageDescription"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/test_image_description"
android:textAppearance="?android:attr/textAppearanceMedium" />
</LinearLayout>
</ScrollView>
未生成任何错误。 干杯 夏兰
答案 0 :(得分:3)
只有当您有足够的内容无法在整个屏幕上显示时,滚动视图才会显示。看到您的xml,您可能在布局中没有那么多内容
答案 1 :(得分:0)
所以在三星T3 8英寸平板电脑上运行此活动并且滚动工作正常,似乎无法在具有类似模拟设备的模拟器上获得它。