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# ...
-
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;
}
)
-
-
droid already has continued scrolling, when you flick it keeps scrolling after you lift your finger
-
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
-
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
Similar Threads
-
By JohnDroid in forum Droid News
Replies: 5
Last Post: 11-30-2010, 08:32 AM
-
By Minpin in forum Droid General Discussions
Replies: 6
Last Post: 02-05-2010, 03:15 PM
-
By justbob in forum Droid General Discussions
Replies: 5
Last Post: 02-03-2010, 03:44 PM
-
By Chris.Nelson in forum Droid Games
Replies: 6
Last Post: 01-20-2010, 12:05 PM
-
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.