我有一个图像,其中包含文本并在较大的屏幕设备中显示正常但在较小的屏幕上无法读取文本。我决定使用一种尺寸并在较小的屏幕上滚动。我使用下面的代码来设置垂直滚动和水平滚动,但它只会垂直滚动。
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbars="vertical">
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="820px"
android:layout_height="fill_parent">
<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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".CategoriesActivity">
.
.
.
<ImageView
android:id="@+id/termsImg"
android:layout_width="450dp"
android:layout_height="600dp"
android:layout_below="@+id/headerPanel"
android:background="@drawable/screen1" />
</HorizontalScrollView>
</ScrollView>
水平滚动适用于较大的屏幕,但不适用于240或320尺寸的屏幕。
我需要更改哪些内容才能让我的imageView水平滚动以及垂直滚动?
答案 0 :(得分:0)
就这样做。
<ScrollView
android:id="@+id/layout0"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/layout1"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<HorizontalScrollView
android:id="@+id/layout2"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/layout3"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
<!-- Your ImageVIew -->
</ImageVIew>
</LinearLayout>
</HorizontalScrollView>
</LinearLayout>
</ScrollView>
但是如你所见,它似乎非常低效。您可以通过将图片视图缩放到适当的scaleType
并使用一个ScrollView
来解决您的问题。