Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
It's very easy to use Android Studio to generate a project with a ActionBarTabs inside a ViewPager.But I'm wondering if it's possible to use ActionBarTabs without ViewPager?
The Design guide for swiping views and Tabs specifically state that users expect to be able to swipe between tabs. I'd strongly recommend using tabs and allowing swiping between them or picking a different navigation pattern (such as a Spinner or a Navigation Drawer).
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Right now, Google used a card-like design for their apps, like Google Plus or Youtube.
My question is that how to implement this in my app. What I need is this:
It should be a ListView, each item has a card background, and some spacing between items.
Some card may contain another ListView, with some paddings and no divider spacing in this internal(inside of the card) listview.
I know it is simple to get (1), but what about (2) ?
I tried use CWAC-Merge adapter, but I can not get (2) work.
What about this library? A library that allows you to easily mimic Google Play's card layout on Android.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 8 years ago.
Improve this question
I want to add one Activity in to my current Activity's RelativeLayout(Parent) after a click on a Button. I want to do it dynamically, not from xml file. I'd like to know how and where to attach the code, and how would the code look. A simple example would do.
Fragments are the way to do this if your target API allows. An Activity is not a View, and has a very different life cycle.
That said, the deprecated TabActivity is an Activity that appears inside a TabHost - so it isn't impossible. But TabActivity is (I'm guessing) probably supported via nasty internal hacks that can't be generally supported by normal Activities.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I just received a mobile app requirement storyboard where there is written pull down search on top of each screen with a dotted horizontal line at the top. Could anyone tell me what this means and help out?
You can use sliding drawer but if u want to use it from top to bottom. than you can use this library https://github.com/chemalarrea/DemoSlidingDrawer
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
In my application i have a share option. when i clicked on that will show a list of applications, If i selected on of the application then that application will be stated.
Now from that application if user select share and touch my app icon then that shared information needs to be shown in my activity is this scenario possible in android? if possible what is the best of doing this.
Here are three easy lessons: Sharing Content.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I would like to use the sliding menu library to create a slide up menu which shows up in the bottom of the screen as you pull the bottom title bar up. Something like this..
I am new to Android. Any idea how I could reuse the library to do this? Which class/function should be modified?
Any help is appreciated.
I believe modifying jfeinstein10's lib might take some time.
Consider the following well documented lib that fits your needs:
Android Sliding Up Panel