Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
This is my problem:
I want to place my ads at the bottom of the screen when i input text from Edit text. Please see attached image. Thanks for support.
You can't. When the keyboard is up, it owns as much of the screen as it wants (it tells Android how big it is_, and that area starts from the bottom. You can't get an area below it.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I want to implement a layout that pops from the bottom and covers half of screen behind it. How do i do it? Is there any library that does it out of the box? I want to do like something shown in the image below.
Take a look at Design idea first. And if feeling lazy, there is plenty of libraries to do this, for example this
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I'm trying to transition part of a form, ie: when you click on a multiline button, just the content part of the form moves, while the header remains static. I'm not sure how to accomplish this or if it is possible. From what I can tell, you can do the whole form, but not parts?
If you place a Container within the center of the form you can replace it by using:
myContainer.getParent().replace(myContainer, newContainer, CommonTransitions.createSlide(CommonTransitions.SLIDE_HORIZONTAL, 500, true);
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I'm thinking of something like this in material design:
Say you tap something, and a full width display overlays the content for about a third of the page.
I'm sure I've seen this type of thing before, but I've got no idea what it's called. Can someone tell me?
It is called Bottom Sheets.
Check it out here
Maybe what you are looking for is BottomSheet from support library 23.2
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Good day!
Can somebody give idea, how i can repeat effect such on this screenshot?
hint over system settings
This is a HiLocker, and I need same effect in my application - to open system settings and show my hint.
Thanks.
Take a look here:
http://www.piwai.info/chatheads-basics/
You will need a WindowManager.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to make a view that can drag, drop, resize, expand, collapse and display over other app that like Musixmatch. Streenshot:
have any idea?
Check out this article, it may be what you're looking for:
http://www.piwai.info/chatheads-basics/
Basically you need to include the permission <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>, and draw a system Window, placing your content within that window.