[android-developers] Android and Accessibility

2009-12-21 Thread dav
Forgive me if this is the wrong place to post this. With all the
evolution of the smartphones, on crucial aspect has been completely
overlooked. That is one of accessibility. This seems driven by iPhone.
The current crop of capacitive touch screens are all but useless for
people with impairments to use by artificial hands. This is really a
shame because resistive touch screens work incredibly well with
prosthetic hands or other devices secured to hands that don't work
very well. There is barely a mention of this shortcoming anywhere
among smartphone developers. Everyone seems desperate to copy the
iPhone features without regard for the effect on the broader
population. I've written the folks at Apple numerous times and yet to
get any response of any kind. It would be a shame to see Android
devices to get locked in competing for Apple's niche market. It would
be great to see more attention devoted to making it easier to
incorporate these resistive touch screens into their devices. I'm
currently stuck using Windows Mobile  on a Palm Treo, only because it
does offer a very good working resistive touch screen. I'm sure there
are many veterans and others with physical impairments would love to
get their hands/hooks or whatever on an Android powered device.
Sincerely,
David

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] android builtin listview widget and fixed headers

2011-11-20 Thread Dav
I was trying to go through the code of android listview . core/java/
android/widget/HeaderViewListAdapter.java core/java/android/widget/
ListView.java

Its bit difficult to figure out how exactly the items go below the
header when you are scrolling,how exactly the headerview remains
fixed . Can anyone give a brief explanation of it ?

I am trying to build fixed headers both vertically and horizontally
for a custom listview.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: android builtin listview widget and fixed headers

2011-11-22 Thread Dav
I understand that i have to implement my own custom listivew to enable
both horizontal and vertical scrolling . But here i need to freeze
some of the columns "say i am trying to develop a cross table
widget" . I am looking for ideas here how to fix the header and scroll
the items in the table. Fix /freeze the left most column and able to
scroll the columns horizontally .

I will be implementing my own recycling logic for efficiency /reuse of
views.

Thanks,
dav.

On Nov 21, 6:01 pm, Mark Murphy  wrote:
> On Mon, Nov 21, 2011 at 1:19 AM, Dav  wrote:
> > I was trying to go through the code of androidlistview. core/java/
> > android/widget/HeaderViewListAdapter.java core/java/android/widget/
> >ListView.java
>
> > Its bit difficult to figure out how exactly the items go below the
> >headerwhen you are scrolling,how exactly the headerview remains
> >fixed. Can anyone give a brief explanation of it ?
>
> Theheaderview does not remainfixed. Theheaderview is simply a row
> of the list that is not supplied by your adapter, appearing above all
> other rows.
>
> > I am trying to buildfixedheaders both vertically and horizontally
> > for a customlistview.
>
> ListViewdoes not scroll horizontally.
>
> --
> Mark Murphy (a Commons 
> Guy)http://commonsware.com|http://github.com/commonsguyhttp://commonsware.com/blog|http://twitter.com/commonsguy
>
> Warescription: Three Android Books, Plus Updates, One Low Price!

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] How to get fade effect

2011-11-23 Thread Dav
I am developing a custom view . How to get fade effect while moving a
view towards another view ? i,e . When i push one view under another
view it should fade..

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Two linearlayouts inside onLayout method

2011-11-24 Thread Dav
Can i create two linearlayouts inside the onLayout method (i am
extending from adapterview)? . I want to add couple of views into the
firstlayout and add rest of the views into the second linearlayout .
Is this possible ?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Two linearlayouts inside onLayout method

2011-11-24 Thread Dav
I need to freeze the first two items of every row in a horizontal
listview. When i do a horizontal scroll the rest of the items should
go beneath the fixed/freezed items. For this reason i wanted two
layouts , add all the fixed elements to one layout and add all the
free items in another.


On Nov 24, 10:57 pm, TreKing  wrote:
> On Thu, Nov 24, 2011 at 2:15 AM, Dav  wrote:
> > Can i create two linearlayouts inside the onLayout method (i am
> > extending from adapterview)? .
>
> Yes, you can create two LinearLayouts. Whether this will actually work as
> you expect is another question.
>
> > I want to add couple of views into the firstlayout and add rest of the
> > views into the second linearlayout . Is this possible ?
>
> Yes, this is possible. Whether this will actually work as you expect is
> another question.
>
> Why create this layouts in onLayout? Why not create them in XML and put
> them in custom layout at design or initialization time?
>
> --- 
> --
> TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago
> transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] any link to browse ICS code online ?

2011-11-26 Thread Dav
any link to browse ICS code online ?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: any link to browse ICS code online ?

2011-11-29 Thread Dav
Got it at https://github.com/OESF/OHA-Android-4.0.1_r1.0

Thanks,
Dav

On Nov 28, 7:41 am, Amit Pundir  wrote:
> On 27 November 2011 07:43, Dav  wrote:
>
> > any link to browse ICS code online ?
>
> Try Linaro's Android repositoryhttp://android.git.linaro.org/gitweb
>
> "android-4.0.1_r1" is the tag for ICS code.
>
> Regards,
> Amit Pundir
>
>
>
>
>
>
>
> > --
> > You received this message because you are subscribed to the Google
> > Groups "Android Developers" group.
> > To post to this group, send email to android-developers@googlegroups.com
> > To unsubscribe from this group, send email to
> > android-developers+unsubscr...@googlegroups.com
> > For more options, visit this group at
> >http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] onlayout getting called twice . why ?

2011-12-08 Thread Dav
I was wondering why onlayout is getting called twice . I tried out
putting a breakpoint in a tutorial code at
http://blogs.sonyericsson.com/wp/2010/05/20/android-tutorial-making-your-own-3d-list-part-1/
, also tried out from 
http://stackoverflow.com/questions/8351780/onlayout-gets-called-twice-any-ideas.
Am i doing any mistake or is it default behaviour of the framework ?

Thanks

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en