Blackberry facebook Dropdown Menu - facebook

I was finding around the website but i cannot get the source. The menu was semi-transparent which got news feed, profile and etc.
I need the sample that creating something like transparent screen on top of current screen. Someone can link me to there?

I think the following links would helps u a lot...
Transparent Popup screen in Blackberry
Transparent screen...again!?
Creating a transparent screen
How to set popup screen transparent...?
want to get the home screen api called

Related

how open a small page in dialog?

I am looking for a solution for display a window over the page like a dialog box but this box will contains a lot of information. It is for my betting game, i display a list of game with a choice between 1 N and 2.
Here is an image of a betting game named netbet :
As you can see i have selected 2.10 in the game Slavia Mozyr/ FC Minsk and a window appears at the bottom of the page for set the amount of money i need to bet. I think it will be better,because mobile screen are very little, displaying a window over the page like a dialog box. Is there a solution for do that in flutter ? Thanks
You might want to use Bottom sheet which does the exact task. It opens a small 'page' (read: widget) over the normal app screen. It'll allow to place the bet etc. It vanishes when use taps anywhere outside.
Sample implementation is here. You can also check solid bottom sheet.

How to show number small custom icon like mail, iphone

I have a social networking app. I have a button and based on the click on the button I need to show a small icon on the top right corner of the button. it is a custom color and text.
I know to show the default system number icon for like the one for unread mail you can get it from the shared application badge count. But I am trying to do something custom here.
I am thinking of building my own imageview (its background will be a custom png) and then within it a small text to show the number.
Anyone has experience with this and can recommend a better way?
You can add a imageView with badge image as the subvie of that button.
There is a lot of custom badge controls available.
Please check the following links.
jobadgeview
CustomBadge
Badge
You cannot change anything on the home screen besides for the app icon, name, and badge value. Do you mean on the home screen or on a tab bar?
UPDATE
If you mean a badge in the app, not on the homescreen, checkout #MidhunMP's answer to find links on how to do this. I have used http://www.spaulus.com/2011/04/custombadge-2-0-retina-ready-scalable-light-reflex/?lang=en before successfully.

Customizing the Facebook view

I need the lightblue bar to scroll up (hide) and display the Facebook bar. For example look at this image.
I need the light blue bar (which contains the search bar, refresh button) to be scrolled up, so it hides and displays from the Dark Blue Facebook bar as shown in this image.
I have seen this in many applications but, how can i implement it in my application programatically ?
There's no way to control safari from your app, and since Facebook serves the HTML there's no way to alter that either. So to achieve what you're looking for you could create your own UIWebView and present it modally instead. The issue you'll have here, though, is that you won't have access to the users cookies, so they'll have to log in to Facebook again.

showing sliding web pages like facebook/ iphone springboard

I am looking to implement something similar to the dashboard of facebook app where you can slide between pages. The page I am talking about has bullets type thing at the bottom to indicate on which page are you. This is same as the one we see in Edit mode on iphone's springboard (main screen).
Is there a control/library for that?
yes , its possible ,
Try Three20 Library - TTLauncherView Facebook Uses this Library
http://iosguy.com/2010/10/19/tthree20-a-brief-ttlauncherview-tutorial/
or this one https://github.com/rigoneri/myLauncher
Hope this Helps

How to add a link to a website with a button and get back to the app

I was wondering how to add a link to a website so that when the user taps on a button, he will be taken to that webpage, but can then hit an x in the top left corner or hit the home button and then it will take them back to their app. I want it to be like iad where it doesn't close your app when you click on that link.
You can implement your own UIWebView in your app which will display the link, and handle all of the navigation. There are many tutorials on the web. Hope that Helps!