• 大小: 0.31M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-25
  • 标签: Android  Viewpager  

资源简介

android 动态加载数据

资源截图

代码片段和文件信息

package com.ipjmc.scroller;

import android.content.Context;
import android.util.AttributeSet;
import android.util.Log;
import android.view.GestureDetector;
import android.view.MotionEvent;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.Scroller;

public class CustomView extends LinearLayout {

private static final String TAG = “CustomView“;

private Scroller mScroller;
private GestureDetector mGestureDetector;

public CustomView(Context context) {
this(context null);
}

public CustomView(Context context AttributeSet attrs) {
super(context attrs);
setClickable(true);
setLongClickable(true);
mScroller = new Scroller(context);
mGestureDetector = new GestureDetector(context new CustomGestureListener());
}

//调用此方法滚动到目标位置
public v

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

 -rw-rw-r--       482  2012-09-16 18:56  ScrollerDemo\src\com\ipjmc\scroller\MainActivity.java

 -rw-rw-r--      2913  2012-09-16 18:55  ScrollerDemo\src\com\ipjmc\scroller\CustomView.java

 -rw-rw-r--      1723  2012-09-16 18:04  ScrollerDemo\res\drawable-xhdpi\ic_launcher.png

 -rw-rw-r--      3199  2012-09-16 18:04  ScrollerDemo\res\drawable-xhdpi\ic_action_search.png

 -rw-rw-r--      1363  2012-09-16 18:04  ScrollerDemo\res\drawable-hdpi\ic_launcher.png

 -rw-rw-r--      3120  2012-09-16 18:04  ScrollerDemo\res\drawable-hdpi\ic_action_search.png

 -rw-rw-r--       972  2012-09-16 18:04  ScrollerDemo\res\drawable-mdpi\ic_launcher.png

 -rw-rw-r--      3030  2012-09-16 18:04  ScrollerDemo\res\drawable-mdpi\ic_action_search.png

 -rw-rw-r--       780  2012-09-16 18:04  ScrollerDemo\res\drawable-ldpi\ic_launcher.png

 -rw-rw-r--       548  2012-09-16 18:55  ScrollerDemo\res\layout\activity_main.xml

 -rw-rw-r--        85  2012-09-16 18:04  ScrollerDemo\res\values\styles.xml

 -rw-rw-r--       235  2012-09-16 18:04  ScrollerDemo\res\values\strings.xml

 -rw-rw-r--        90  2012-09-16 18:04  ScrollerDemo\res\values-v11\styles.xml

 -rw-rw-r--       104  2012-09-16 18:04  ScrollerDemo\res\values-v14\styles.xml

 -rw-rw-r--       240  2012-09-16 18:04  ScrollerDemo\res\menu\activity_main.xml

 -rw-rw-r--    349252  2012-09-16 18:04  ScrollerDemo\libs\android-support-v4.jar

 -rw-rw-r--       815  2012-09-16 18:55  ScrollerDemo\.project

 -rw-rw-r--       781  2012-09-16 18:04  ScrollerDemo\proguard-project.txt

 -rw-rw-r--       770  2012-09-16 18:55  ScrollerDemo\AndroidManifest.xml

 -rw-rw-r--     12712  2012-09-16 18:04  ScrollerDemo\ic_launcher-web.png

 -rw-rw-r--       356  2012-09-16 18:12  ScrollerDemo\.classpath

 -rw-rw-r--       563  2012-09-16 18:04  ScrollerDemo\project.properties

 drwxrwxr-x         0  2012-09-16 18:05  ScrollerDemo\src\com\ipjmc\scroller

 drwxrwxr-x         0  2012-09-16 18:55  ScrollerDemo\src\com\ipjmc

 drwxrwxr-x         0  2012-09-16 18:58  ScrollerDemo\bin\classes

 drwxrwxr-x         0  2012-09-16 18:04  ScrollerDemo\res\drawable-xhdpi

 drwxrwxr-x         0  2012-09-16 18:04  ScrollerDemo\res\drawable-hdpi

 drwxrwxr-x         0  2012-09-16 18:04  ScrollerDemo\res\drawable-mdpi

 drwxrwxr-x         0  2012-09-16 18:04  ScrollerDemo\res\drawable-ldpi

 drwxrwxr-x         0  2012-09-16 18:04  ScrollerDemo\res\layout

............此处省略15个文件信息

评论

共有 条评论