I would like to create a screen similar to the settings screen on the android tablet. The screen is split in two with a list on the right. When a item is selected on the right the details are shown on the left. I also want to have similar graphics in terms of the littel arrow that shows which item has been selected. Can anyone point me in the right direction?
It is call Fragment Activity you can use this for same as settings layout in tablet.
For more information plz do search about Fragment Activity
Here is Best Link
Related
I have to add a "info" button in my appliation of image retouching, so typically it's just a "i" logo in the menu bar, and when you click on it a list of severals values is showed on the entire screen with a back button at top-left.
I just want to know what is the best practice to do this. For me because it's a new screen I must use a new Activity. And not a Fragment because I want to have the same behavior on tablet. However may be it's better to do a fragment if in the futur I want to develop the informations on the half of the screen for tablets. But may be it's better to just switch content of the layout or setVisible() a part of it ?
Thanks in advance
I am developing an app where I have several items in a list and I want to show a menu like in truedialer whereby it pull from the bottom of the screen but does not fill. When I drag it upwards it can still fill the screen..
I have the menu items in an stand alone activity.
Can Someone help me figure out how o have to activity with the menus behave like the one of truedialer as shown in the screen
enter image description here
enter image description here
You can achieve this by using bottom sheets
https://material.google.com/components/bottom-sheets.html
http://android-developers.blogspot.com/2016/02/android-support-library-232.html
I am creating a custom gallery activity on the left side will have a tools panel and the right is where the preview image with list of thumbnails at the bottom.
Inside the tools, we have an option which let the user to click into full screen mode so the right side will be shown in full screen.
This is my first time doing this. I am wondering Fragment is the best solutions to do it.
The left fragment are the tool panel and the right fragment contains the gallery. When the full screen button in the left fragment was clicked, the left fragment's width became 0dp whereas the right fragment took the whole area.
You can use standard android-navigation drawer, where you can have your "tools"/widgets on a drawer panel and show the gallery in the container fragment.
or you can have a custom-design something like this: sattelite-menu
to have tools and display gallery as usual.
I have developed a similar app : blimp-github
Fragments are best solution to have if your app has very few screens where user is expected to swipe-navigate(makes it much simpler),
hope it helps....
I have a news app.It is supposed to launch by swiping on the screen(homescreen or while in any other activity like switchr app).I learned to code swiping patterns but in my case I have to do exactly in the following way(swiping bottom right to top left)..Kindly have a look over following pictorial representation
1.Firstly app should launch by swiping bottom right to top left on the screen
2.next,show the user with list of scrollable arc menu buttons embedded in it like second image
3.when a user clicks on particular button it has to show a brief description about the content like third image
my problems:
creating arc like scrollable menu on bottom right side of the screen(I googled sia ahmed's solution over here ,it helped me a bit)
creating that parachute like structure(image 3) when user clicks particular bubble like button in arc menu..
please guide me
For the menu check out arcmenu by daCapricorn on github. Also see this question.
The balloon bit is trickier. I know of a balloon hint code for android but i haven't seen it in action.
Hope this helps!
I have an app that is basically a listView which brings up a detail screen when an item is selected. In landscape I split the screen so that the left had pane contains the listView and the right hand pane contains the detail of the item selected on the left. The dual mode proportions are split 45:55 which is hardcoded in the layout xml. I want to give the user the ability to change the proportions to their own liking. Some kind of setting in Preferences would be OK. Even better would be a "widget" actually on the screen which they could slide to change the proportions. I haven't found a way of achieving this. Does anyone have any ideas?