[android-developers] PopupWindow alpha animation problem

2011-12-15 Thread Krzysztof GÅ‚odowski
Hello, I'm trying to animate my PopupWindow with multiple animations at the same time, but there is an issue. If I put for example two animations in a set: translate and scale, they work very well together. However, if I add an alpha animation to this set, then only the first two are played

[android-developers] PopupWindow with custom view for Spinner breaks touch events?

2011-11-15 Thread Jona
I'm not understanding what exactly is the issue with my custom PopupWindow. I have a ListView as my content view and each item in the list contains a button or Spinner. When I place a spinner with a custom layout for its list items none of the buttons or Spinners work, nothing happens when

[android-developers] PopupWindow out of screen when size is unspecified

2011-10-08 Thread Raffaele Sgarro
Most examples out there specify exactly the width and the height of the popup window. I want them to be WRAP_CONTENT - since the content is dinamically determined- so in the constructor I set -2 for both width and height and show it via showAsDropDown(View anchor) Doing this, the popup is

Re: [android-developers] popupwindow

2011-07-21 Thread arun kumar
am having a textview when i click on it a popup window(containing list has to display.). i read the documents but not understanding how to code plz guide me Thankyou arun -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

Re: [android-developers] popupwindow

2011-07-21 Thread TreKing
On Thu, Jul 21, 2011 at 2:05 AM, arun kumar arun.kata...@gmail.com wrote: i read the documents but not understanding how to code Sorry, but if you don't know how to code, you're not going to get very far. Learn to code in Java, then go back to the documentation and see how the relevant

[android-developers] popupwindow

2011-07-20 Thread arun kumar
Hi.. what is popup window...how to do floating list popup window Thankyou -- 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

Re: [android-developers] popupwindow

2011-07-20 Thread TreKing
On Wed, Jul 20, 2011 at 6:55 AM, arun kumar arun.kata...@gmail.com wrote: what is popup window...how to do floating list popup window Did you try reading the documentation? - TreKing

[android-developers] popupwindow on onCreate()

2011-07-15 Thread bhavani sankari
Hi All, I am displaying a popwindow onCreate() of an Activity A.When launching Activity A from Activity B am getting this popupwindow?...I dont want this behaviour Any ideas? Regards Bhavani -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] popupwindow on onCreate()

2011-07-15 Thread Filip Havlicek
Insert some extra to the Intent indicating you don't want to show the popup? 2011/7/15 bhavani sankari bhavani...@gmail.com Hi All, I am displaying a popwindow onCreate() of an Activity A.When launching Activity A from Activity B am getting this popupwindow?...I dont want this behaviour

[android-developers] PopupWindow doesn't show up

2011-04-25 Thread jotobjects
I have the following code but the PopupWindow does not appear. I want it to appear in the center of the screen. I'm not clear about what parent in the last line is supposed to be... Does anybody see what is wrong here? PopupWindow popup = new PopupWindow(context); TextView contentView = new

Re: [android-developers] PopupWindow doesn't show up

2011-04-25 Thread TreKing
On Mon, Apr 25, 2011 at 2:36 PM, jotobjects jotobje...@gmail.com wrote: I'm not clear about what parent in the last line is supposed to be... How is this compiling? - TreKing

[android-developers] PopUpWindow Gap on left and right side

2011-02-03 Thread Deepak Tiwari
Hello All, I am using custom PopupWindow(height =420,width =320 as per device size) and it will popup from bottom of screen(with animation).Yeah it will appear properly.But the problem is - it always gives a 3-5 px(approx.) gap at the left and right side of the popupWindow.

[android-developers] Popupwindow can't disappear.

2010-10-21 Thread rio
Hi,everyone; I have writen a input method for qwery keyboard on android platform.When user press a key ,I show a candidate word use a popupwindow. In this time a new incoming call is arrive,the popupwindow can not disappear ,it show on the incoming call activity.Is anybody see a problem

[android-developers] PopupWindow and scrolling

2010-07-23 Thread Ryan Tan
Hi there, I have a PopupWindow and on it, I have a TextView that is scrollable (having property of android:scrollbars = vertical and mPopupTextView.setMovementMethod(new ScrollingMovementMethod());). The problem is when I tried scrolling the TextView, the scrollbar moves but the text doesn't. I

[android-developers] PopupWindow Does not show

2010-07-14 Thread Conny
Log.d(NameView, NameViewDropDown Clicked); View nameDetailsView = inflate(context, R.layout.nameDetailsPopup, null); PopupWindow nameDetailsPopup = new PopupWindow(nameDetailsView);

Re: [android-developers] PopUpWindow not displaying when tapping on marker

2010-06-24 Thread TreKing
On Fri, Jun 18, 2010 at 12:58 AM, Nithin nithin.war...@gmail.com wrote: Here layout is an object of LinearLayout. And this LinearLayout is placed where exactly? - TreKing - Chicago transit tracking

[android-developers] PopUpWindow not displaying when tapping on marker

2010-06-17 Thread Nithin
Hi, I am displaying google map and on top of that some overlay items(Markers) are there. When tapping on the markers, I need to display PopUpWindow. The code is executing but popup is not displaying. popUp.showAtLocation(layout, Gravity.TOP, 0, 0); popUp.setFocusable(true);

[android-developers] PopupWindow can't be dismissed when press back key

2010-06-04 Thread ionel
Hi, I've created a custom PopupWindow but when I press back button, the window doesn't dissapear. If somebody found a solution please response. Thanks, Ionel. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] PopupWindow - controlling size?

2010-05-27 Thread Nathan
I've experimented with a PopupWindow, but don't have a very good way of controlling its size. It only responds to absolute pixels. I've tried doing this: popup.setWindowLayoutMode(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT); But it doesn't work. If I don't use setWidth() and

[android-developers] PopupWindow on activity start

2010-02-21 Thread Chopcsu
I am trying to make a PopupWindow show straight away when an activity has started. when calling public void showAtLocation (View parent, int gravity, int x, int y) I get the exception ERROR/AndroidRuntime(2500): Caused by: android.view.WindowManager $BadTokenException: Unable to add window --

Re: [android-developers] PopupWindow on activity start

2010-02-21 Thread Romain Guy
You could simply post (to a View or a Handler) a Runnable from onCreate() to do this. You can also try to do it from onStart(). Activity.onWindowFocusChanged() is definitely NOT the right place. On Sun, Feb 21, 2010 at 5:00 PM, Chopcsu st...@kilsby.com.au wrote: I am trying to make a

[android-developers] PopupWindow with GridView - Trouble with inflating view

2009-11-10 Thread k_day
I tried to post on http://groups.google.com/group/android-developers/browse_thread/thread/6fa09de8303ec6da but it appears the discussion is locked (no reply button) for some reason. I am having a similar issue while trying to use a GridView in a PopupWindow. On my Activity's onCreate method, I

[android-developers] PopupWindow animation

2009-08-08 Thread loctarar
Hello! I have some issues with making PopupWindows animate when showing. The setAnimationStyle takes parameter a resource ID to what exactly? I took a look through the android resources and built my own animation style using the values/styles.xml as an example. My styles.xml file: resources

[android-developers] PopupWindow Dismissal

2009-06-24 Thread peeyush varshney
Hi, I am creating Spinner over PopupWindow .But when I press back key in opened Spinner. it dismiss the Spinner as well as PopupWindow. It should close the Spinner only and come back to PopupWindow.but it is no happening. How should I handle this scenrio. -- Thank Regards Peeyush

[android-developers] PopupWindow not showing.. getting a nullpointer need explanation

2008-04-08 Thread Rahul
I am trying to get this popup window to pop up when it is called but it keeps on getting a nullpointerexception error. it shows up at the line whenever i try to use the setText method. When i debug it shows that the popup window is not showable ever. the seeqpodtrack part is working correctly for