Questions tagged [android-popupwindow]

The popupWindow is an AndroidView Container displayed on top of the current activity to show any view.

JavaDoc: http://developer.android.com/reference/android/widget/PopupWindow.html

362 questions
0
votes
1 answer

Android ListPopup Window

I am using a ListPopup Window on a Map in Android Studio to show a list of customized marker names. These markers are stored in an arrayList of a class that keeps the name and the coordinates. The idea is to move the map camera in position over…
0
votes
1 answer

In Android, how to get the reference of a popupwindow, which is a private member of the customized HeaderBar

I use a third party Android package, which defines a HeaderBar UI class. This class has a private member which is a popup window. I want to reset the width of the popup window, but I cannot get a reference of the popup window from the instance of…
HChen
  • 258
  • 1
  • 3
  • 12
0
votes
1 answer

Calling modifiedPopupWindow class from Actionbar Menuitem: Is this even possible?

I have a PopupWindow that I'd like to call from a menu item in the action bar. PopupWindow class is, public class speciesPopupWindow { Context ctx; Button btnDismiss, ...; public speciesPopupWindow(Context ctx){ this.ctx = ctx; } public void…
0
votes
0 answers

Android PopUp Window and Web View WindowManager$BadTokenException

I am trying to display a pop up window with a webview inside it having few HTML text inputs. When I focus the first input box the keyboard comes up and everything is fine. When I try to focus the next input box my app crashes with the below…
0
votes
1 answer

Popup window isnt fully loaded on first open

I'm making my android app and got stucked with this problem: when i open popup window for the first time(see picture 1) after fragment is loaded, it seems like its not fully loaded: i cant scroll listview, layout under the listview has wrong…
0
votes
0 answers

How to select image from displayed horizontal listview and used as swipe image android?

I have an imageview and below is horizontal listview. So when I select image in horizontal listview, selected image will display in imageview. Now when I click imageview, it should display in full screen with swipe images. I used view pager but I…
Shadow
  • 6,864
  • 6
  • 44
  • 93
0
votes
1 answer

How to show a pop up dialog from your app when screen is locked on Android?

How can I push a pop-up from my app to the user when the screen is locked on android?
lyc001
  • 777
  • 1
  • 10
  • 25
0
votes
1 answer

Using WRAP_CONTENT, popupwindow gets hole screen width

I am trying to create a PopupWindow with custom layout. Here is my layout file:
Misagh Emamverdi
  • 3,654
  • 5
  • 33
  • 57
0
votes
2 answers

Android QuickActions? PopupMenu? Popup Window?

I'm currently developing an Android app for a client. Problem is their mockup screens contained a UI view that I'm unfamiliar with. In short, I'm not sure what approach/implementation to use. This is what I'm trying to achieve: The user taps on…
0
votes
1 answer

animation canceled when scrolling

I've implemented a small animation on a button placed over a list view. Basically it's like a quick action button to add/refresh the list. What I want to do is to animate the button once the user has clicked on it and display a popup. Once the popup…
Manitoba
  • 8,522
  • 11
  • 60
  • 122
0
votes
1 answer

How to close a pop up without exiting the main program

I am a beginner in Android app development, and I have a problem with an old app. I have to close an activity that is open over another activity: for example, a pop up that is open on top of the main app. How I close the popup and return false…
0
votes
1 answer

Android popup menu widget over each screen like Edge Quick Action

I´d like to make an Android utility application. It should be able to show the transparent popupmenu with some buttons over the homescreen or over some running application (except in fullscreen mode). I want it to look like that…
0
votes
4 answers

POPUP window showing in android

i have created a button in android and when clicking it would show the popup window..but the code doesnot work like that..it has no errors but not showing popup window...please helpme..here is my code public class MainActivity extends Activity…
CATIEEE
  • 45
  • 1
  • 9
0
votes
1 answer

How to an anchor (View) can add multiple List popup window and positioning each listpopupwindow to the anchor?

As the title, I'd like to associate multiple List Popup Window to a anchor (a view). For example: one above, one below, one left and one right of the anchor. But I have no idea if it's possible? Can you explain my problem? 1) How to add multiple…
Long Uni
  • 101
  • 3
  • 12
0
votes
2 answers

Popup window as in Play Store

I want to create a popup menu same as that of Play Store. The popup menu should open in bottom right corner of grid view item. But if the item is in bottom of screen, the popup should open above the point where it's clicked. I have tried popup menu,…
megha
  • 301
  • 5
  • 18