如何制作包含两个部分的android图像滑块。一部分是水平图像滑块(thumnail),第二部分是所选图像的原始图像。 这看起来像ios中的ios水平视图:
答案 0 :(得分:1)
您需要使用Gallery
和ImageView
1:制作布局:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="70"/>
<Gallery
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="30"/>
</LinearLayout>
2:使用适配器初始化Gallery。
3:为需要更改上面给出的imageView的图库项目定义onItemClickListener。
或者,您可以使用此处给出的完整代码: LINK(类似于您的尝试)