Android学习记录使用Gallery实现炫丽的拖动效果
是用Android Gallery组建 ,对图片实现拖拽效果 首先在layout文件中拖入Grallery图片显示的组建<?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/Gallery01"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</Gallery>
</LinearLayout>
Activity视图代码如下
<div class="quote_title"> GalleryActivity.java
页:
[1]