android相框

时间:2010-05-20 05:13:47

标签: android

我是新手android我正在开发小应用程序我想在屏幕上排列图片就像tumbnail视图并想要在所有图片上滚动然后我必须能够在触摸屏幕上的图片后选择一张图片我可以做吗?请帮助我

先谢谢。

1 个答案:

答案 0 :(得分:0)

您可以使用Gallery控件滚动缩略图,然后在选择图片时(使用方法gallery.setOnItemClickListener()),该图像将在ImageView中显示。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >   
    <Gallery
        android:id="@+id/gallery1"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" />        
    <ImageView
        android:id="@+id/image1"
        android:layout_width="320px" 
        android:layout_height="250px"
        android:scaleType="fitXY" />

</LinearLayout>