TimePicker And ScrollView Not Playing Nice?

Jan 20, 2013

Ok, so I have a XML layout with a TimePicker, few buttons and what not and a ScrollView because it's needed.

When I run the app the app doesn't scroll. On top of that the TimePicker doesn't scroll either. Well it does but correctly. It takes 6/7 swipes to move from 6 to 7. When I remove the ScrollView the TimePicker works fine and when I remove the TimePicker the layout can scroll.

Is there a way I can get them both to work in the XML?

My code is pretty basic so I don't think I need to post it but let me know if you want to see it.

I've tried fillViewPort and using nested layouts but nothing works. This effectively makes my app useless.

TimePicker and ScrollView not playing nice?


General :: YouTube And Facebook Not Playing Nice

Sep 15, 2013

Ever since the most recent YouTube update (5.0.21), any time I try to open a link to a video (might be all FLV videos) in Facebook Chat, whether it's the actual Facebook app or Messenger, it doesn't work.

It tries to open in Gallery, and gives me a "Can't play this video" error.I've tried different ROMs, different kernels, etc... with the same results.

View 7 Replies View Related

Android :: ScrollView .scrollTo Not Working - Saving ScrollView Position On Rotation

Jul 16, 2010

I must be overlooking something real simple here, but i think i'm trying to do something fairly basic.. Simply retain the scrollbar position of a ScrollView on orientation change...

Here is the code for my onSaveInstanceState and onRestoreInstanceState.. sView is the container for the ScrollView layout. Within my scrollview is a linearlayout with a lot of textviews.

CODE:............

If I set a Toast with the values of sViewX and sViewY on the Restore, the values are kept and correct.

I just tried to do a sView.scrollTo(0,150); in my onCreate.. just to see if that would open the activity at 150px down, and it didn't. I think my issue has to do with the .scrollTo method.

View 1 Replies View Related

Android :: Create A ListView That's Not In A ScrollView - Or Has The ScrollView Disabled

Mar 10, 2010

I want some of the goodies in a ListView, like being able to use a ListAdapter, and item selection, etc, but I don't want the ScrollView portion of it. I want to implement that part myself, in a different way (why or how I do this isn't really the point of this question, so please don't ask "why"). Is there a way to have a ListView that's not in a ScrollView or has the scrolling disabled?

View 2 Replies View Related

Android :: How To Get TimePicker After TimePickerDialog Pop Up

Jul 26, 2010

I'm working on the android automatic test, and try to test the alarmclock app in the android. I want to get the TimePicker after the TimePickerDialog pop up, then we can use it to invoke the methods 'setCurrentHour(...)' and 'setCurrentMinute()' to set the alarm time programmatically instead of sending the key event so many times.

View 1 Replies View Related

Android :: How Can I Capture - When Time Changes In A TimePicker

Aug 12, 2010

Continuing with the question referred in the following link: [How can I capture when time changes in a TimePicker if the keyboard is being used?][1]

[1]: http://stackoverflow.com/questions/3380761/how-can-i-capture-when-time-changes-in-a-timepicker-if-the-keyboard-is-being-used/"How can I capture when time changes in a TimePicker if the keyboard is being used?"

I could solve the problem but it only works when you use the actual keyboard. If you use the soft keyboard I can't get it to work.

I am programming in 1.6 version of the framework.

PS: The fact that I've search everywhere for the answer and have not been able to find it tells me that this must be so very simple or very much complicated.

View 3 Replies View Related

Android :: Datepicker - Timepicker Widgets

Aug 12, 2009

Are the widgets used in Datepicker standarized? Meaning, can I employ them in my layout, or do I have to build them on my own? Are there standard versions of them or even, can they be "created" through settings or would I have to build them from scratch using EditText and buttons?

View 6 Replies View Related

Android :: TimePicker View - 15 Minutes Interval

Apr 5, 2010

Can I control the Android TimePicker view to just show the minutes to 15 minutes interval? Meaning if it's 12:28 now, show 12:30 and clicking the + and - button will increment and decrement by 15?

View 4 Replies View Related

Android :: Possible To Remove PM Button From Timepicker On Layout?

Nov 10, 2010

i have to use some timepickers on my layout, but i dont need the PM buton, i just want to have 24 hours sistem on the timepickers this is possible? it is bassically to call "setIs24HourView(true)" but not from the java code, from the layout

View 1 Replies View Related

Android :: Make DatePicker And TimePicker Smaller

Nov 15, 2010

Is there any way to make smaller DatePicker and TimePicker (but to be visible all parts ) in Android ? I tried to set layout_width="130dp" but then DatePicker isn't visible, just left upper corner.

View 1 Replies View Related

Android :: How To Use Custom Datepicker And Timepicker Skins

Aug 6, 2010

I would like to use a custom skin for my Datepickers and Timepickers. Changing the background in XML doesn't do the trick (it changes the background to the set, not each of its buttons). The API is painfully short and has nothing about appearance ( http://developer.android.com/reference/android/widget/DatePicker.html ). Is it possible to use a custom skin for the buttons of Datepickers and Timepickers?

View 1 Replies View Related

Android :: Displaying And Retreiving Seconds With TimePicker

Jan 27, 2010

Currently the TimePicker view shows only hours and minutes by default and I am retrieving the values using getCurrentHour() and getCurrentMinute(). Is there a solution to add seconds to the TimePicker view?

View 1 Replies View Related

Android :: How To Capture When Time Changes In A TimePicker If Keyboard Is Being Used

Aug 1, 2010

I have a widget which is a TimePicker that retrieves the time saved in a field in a database.

Thing is that when the user changes the time value in the widget, this is not being saved in the database.

So I came across the setOnTimeChangedListener method that works like a charm, if you are only using the plus and minus signs in the widget. It does not capture the change if you are using the keyword.

Here is my code:

CODE:................

I've also tried unsuccessfully:

CODE:....................

View 2 Replies View Related

Android :: DatePicker And TimePicker Connot Be Skined/themed

Sep 8, 2009

Is it just me or Android theme-ing system does not allow to set a theme for DatePicker and TimePicker? Searching "themes.xml" and "styles.xml" in Android source code (v1.5), I couldn't find anything related to these two components!

View 6 Replies View Related

Android :: Disable Keyboard Input On Droid TimePicker?

Mar 6, 2010

I'm developing and Android app using the 1.6 sdk. I'm using a TimePicker and I don't want the soft keyboard to come up when you click on the digits in the TimePicker. I only want the TimePicker to be changed using the plus and minus buttons. I've tried using android:focusable="false" and android:focusableInTouchMode="false" hoping those would do it, but they didn't seem to do anything. Is there a way to do this?

View 2 Replies View Related

Android :: TimePicker Selecting The Button And Input Field

Apr 5, 2010

I'm trying to modified the way TimePicker works as asked in my question here http://stackoverflow.com/questions/2580216/android-timepicker-minutes-to-15

To be able to do that I need to know if the + and - button was clicked and to disable the input field.

So can I target the elements in a TimePicker? (i.e the + and - button and the input field)?

Also is there anyway to determine if the + or the - button was clicked?

View 1 Replies View Related

Android :: Code A WeekPicker Much Like Existing DatePicker And TimePicker?

Apr 22, 2010

On Thu, Apr 22, 2010 at 3:53 PM, powder <jonas.hey...@gmail.com> wrote: > Anyone have an idea how to code a WeekPicker much like existing DatePicker > and TimePicker?

View 2 Replies View Related

Android :: Changing System-level Dialogs - TimePicker - DatePicker

Feb 14, 2010

I have HTC Hero, and i see that TimePickerDialog and DatePickerDialog were changed by HTC (they look different than those in the emulator). My question is how can i change such system level dialogs?

View 1 Replies View Related

Android :: Nice App For College Students

Aug 17, 2010

I ran across a nice app for students on AppBrain. Seems to run smooth on my phone, and syncs with Google real well. The dev also seems pretty active with the updates. Grades: Student Organizer Grades: Student Organizer - Android app on AppBrain

View 1 Replies View Related

HTC Hero :: Checkout Skyfire 2.0 - Seems Nice Though

Apr 29, 2010

Early days for me, seems nice though

View 10 Replies View Related

Android :: RSS Reader - Nice GUI And Default Feeds

Jun 8, 2010

What is the best RSS reader? I want to be able to read full stories off line after they've been downloaded. I've tried AP Mobile and Express News, they both have ugly GUI and rarely update - properly. Looking for a nice GUI and some default feeds.

View 12 Replies View Related

Android :: Ant And Eclipse Builds Don't Play Nice

May 25, 2009

I use ant to do release builds, and eclipse to do all my debug builds. With the new 1.5 sdk, my build.xml overides the resource-src target in order to perform some additional tasks, and it then depends on android_rules.resource-src to get the proper toolchain behaviour.This works well for ant, but eclipse doesn't seem to know where android_rules comes from (not surprising since it is dynamically imported via code), and thus says there is an error in the file. This in turn stops the entire android project from building. So I need to either somehow get eclipse to parse the build.xml properly, or better still, get eclipse to ignore the build.xml altogether since build.xml takes no part in the eclipse build.

View 8 Replies View Related

Samsung Moment :: Gesture Search - Nice App

Apr 25, 2010

I'm coming from 1.5 to dd10 & this app is pretty sweet... just thought i'd share incase some didnt know it was available.

View 1 Replies View Related

HTC Incredible :: Network Extender Don't Play Nice

Jul 29, 2010

I received the 2 network extenders I ordered today, hooked them up, waited for the gps to find itself, and then nothing. Talked with tech support and they said you needed at least 300kb up & down (my dsl was 810 down & 216 up). So I talked to my isp, and for $10 raised my speeds to around 1400kb down and 760kb up. I cycled power to the network extender and still no go!

Spent and hour with VZW tech support and found that a family member's Moto W385 (Moto feature flip phone) could connect just fine, but not my Incredible. Tried it with the second network extender and same results. The tech issued me a trouble ticket and tey will get back to me. He closed the call saying there was probably something wrong with my Incredible.

My questions are does anyone have both an Incredible and a network extender? Do yours work or did you have similar issues? If so how were they, or were they resolved?

View 8 Replies View Related

HTC Incredible :: Need A Flashlight App Be Nice It Work With Video Too

Jul 29, 2010

I am looking for a flashlight app also be nice if it worked with Video recording? I had one on my Moto Droid!

View 7 Replies View Related

Android :: Good / Nice Looking Functional SMS Widget?

Dec 16, 2009

I'm looking for a nice looking, functional SMS widget. I'm currently using the one from Beautiful Widgets, but as much as I like the other widgets in that package, I think the SMS one is painfully ugly and doesn't fit with anything else on my home screen. I know I could have Handcent do popup notifications, but I would prefer to have a widget like the one I currently use that sits on the home screen.

Something skinnable would be preferable, but if nothing like that exists, then perhaps a simple, minimalistic or universal design.

Anybody know of anything that I might like? I'm willing to pay for a good one, it doesn't have to be a freebie.

View 8 Replies View Related

Android : Looking For Nice Business Card Apps?

May 12, 2010

I am new to this forum so just dropping been looking really hard for a nice business card apps and i think today I found one. The problem, it is only available in iphone. Anyone know equivalent of it in android ?

check it out. that's what I really want
ScanBizCards: scanning business cards right on your iPhone.

View 4 Replies View Related

Android : Can I Crop An Image To Get A Nice Border

Aug 16, 2010

I have an imageview which has a photo taken with the camera as its background and a frame as it's foreground (src). In that way the photo is positioned behind the frame so the photo get's a nice border.

The imageview is a square (265x265dip). Now the problem is that photos taken are rectangular and thuse they are squeezed into the imageview making them look akward.

So how can I crop the bitmap of the photo so it is fitted as a square so I can then put it as a background for the imageview?

View 2 Replies View Related

Motorola Droid X :: Nice Looking Powercontrol Widgets?

Nov 17, 2010

Anyone know of any nice looking powercontrol widgets? Im using beautiful widgets right now but they dont really appeal to me. Also looking for a nice dock alternative to adw.

View 6 Replies View Related

HTC Tattoo :: Any Nice Wallpaper They Can Share Or Know Of Any Downloads?

Nov 16, 2009

Has anyone got any nice wallpaper they can share or know of any downloads? Im specifically looking for the panoramic kind that fits accross the HTC Sense interface. Theres a couple of nice fields and landscapes on the memory card supplied but more is always better.

View 7 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved