如何实现滚动的缩略图页面?

时间:2014-09-30 21:54:47

标签: android xml android-layout imageview

我正在尝试在布局中添加一些带有ImageView的图像(确切地说是7和文本视图),我希望两个并排放置整个屏幕,然后使用滚动视图向下滚动,接下来的两个将会出现并明显填满屏幕一次。然而香港专业教育学院尝试用权重做这个,我无法弄清楚我的生活如何在xml中实现这个效果?

我目前所拥有的将图像视图并排放置并滚动但是从一个imageView到下一个图像视图的黑色区域很大,因为图像视图内的图形不会占据整个视图

<?xml version="1.0" encoding="utf-8"?>


<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal">

<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical">

<ImageView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:src="@drawable/afflicted_inc"/>

<ImageView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:src="@drawable/afflicted_inc"/>

<ImageView
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:src="@drawable/afflicted_inc"/>

<ImageView
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:src="@drawable/afflicted_inc"/>



</LinearLayout>


    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:orientation="vertical">

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:src="@drawable/afflicted_inc"/>

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:src="@drawable/afflicted_inc"/>

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:src="@drawable/afflicted_inc"/>

        <TextView
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"/>



        </LinearLayout>


</LinearLayout>
</ScrollView>

0 个答案:

没有答案