Finger-Flicker Android Code - iPhone like scrolling -

This is a discussion on Finger-Flicker Android Code - iPhone like scrolling - within the Droid Hacks forums, part of the Droid Hacking category; Hi All, So i came across something call "FingerFlicking Tech" that apparently emulates the continued scrolling of an iphone. The code for this is C# ...

+ Reply to Thread
Results 1 to 4 of 4

Thread: Finger-Flicker Android Code - iPhone like scrolling -

  1. Junior Droid
    mastermindnate's Avatar
    Member #
    10738
    Join Date
    Dec 2009
    Location
    Droidville
    Posts
    12
    Phone
    Motorola Droid
    #1

    Finger-Flicker Android Code - iPhone like scrolling -

    Hi All,

    So i came across something call "FingerFlicking Tech" that apparently emulates the continued scrolling of an iphone. The code for this is C# and has been used in everything from Windows Mobile to the old Palm OS.

    I've previously owned the myTouch 3G and can remember someone creating a ROM with this type of scrolling embedded within... Just wondering if this is something that could be incorporated in any of the future versions of all the ROMs people are creating..

    I've listed example code below if it helps in any way shape or form

    bool paint = false;
    Bitmap BackScreen = null;
    protected override void OnPaint(PaintEventArgs e)
    {
    if (paint)
    {
    if (BackScreen == null)
    {
    BackScreen = new Bitmap(ClientSize.Width, ClientSize.Height);
    }
    Brush brush = new SolidBrush(Color.Black);
    Graphics g = Graphics.FromImage(BackScreen);
    g.Clear(Color.White);
    for (int i = 0; i < FakeLabels.Length; i++)
    {
    g.DrawString(ListData[i], this.Font, brush, 0, FakeLabels[i]);
    }
    e.Graphics.DrawImage(BackScreen, 0, 0);
    paint = false;
    }
    )
  2. Sponsor
    DF Advertising
    Join Date
    Nov 2008
    Location
    DroidForums.net
     
     
     
     
  3. Master Droid
    Newton122189's Avatar
    Member #
    1942
    Join Date
    Nov 2009
    Location
    Virginia
    Posts
    627
    Liked
    1 times
    Phone
    R2D2 Droid 2, Motorola XOOM
    #2
    droid already has continued scrolling, when you flick it keeps scrolling after you lift your finger
  4. Junior Droid
    mastermindnate's Avatar
    Member #
    10738
    Join Date
    Dec 2009
    Location
    Droidville
    Posts
    12
    Phone
    Motorola Droid
    #3
    i guess what i mean is when you get to the end of the list.. you can KEEP scrolling, and it rebounds, or springs back to the end position.. not really sure how else to describe it
  5. Droid Newbie
    dyodji's Avatar
    Member #
    106114
    Join Date
    Aug 2010
    Posts
    1
    Phone
    Droid 2
    #4
    You find anything yet? I'm totally with you on this, it's very jarring to hit the end of a list with the Droid, it's like it's no longer responding to your touch.

Sponsors

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Similar Threads

  1. Android 2.0 Source Code Available
    By JohnDroid in forum Droid News
    Replies: 5
    Last Post: 11-30-2010, 08:32 AM
  2. Screen Flicker
    By Minpin in forum Droid General Discussions
    Replies: 6
    Last Post: 02-05-2010, 03:15 PM
  3. Weather Channel distributes Android app via on-screen QR code
    By justbob in forum Droid General Discussions
    Replies: 5
    Last Post: 02-03-2010, 03:44 PM
  4. Solitaire flicker
    By Chris.Nelson in forum Droid Games
    Replies: 6
    Last Post: 01-20-2010, 12:05 PM
  5. Android vs iPhone games
    By andjarnic in forum Droid Applications
    Replies: 11
    Last Post: 11-08-2009, 10:00 PM

Search tags for this page

android flick example
,
android flick tutorial
,
android gallery like iphone
,
android gallery on stop scrolling
,
android scroll flick
,

android scroll like iphone

,

android scroller example

,
android scroller examples
,
android scroller tutorial
,
android scrolling like iphone
,
c# finger flicker scroll
,
finger code iphone
,
finger flicker
,
flick scrolling android
,
iphone like list scrolling with fingerflicker
,
iphone scrolling android
,
iphone scrolling on android
,
make android scroll like iphone
,
scroll like iphone android
,
scroll listview android like iphone
Click on a term to search our site for related topics.