Android toast appearing in each tab - android

I currently have a tabview and in my first tab i have a toast message that appears. If click on another tab while the toast is still displaying, it will display in that tab as well. Is there any way to not make this happen? Do i simply cancel it inside the onPause()? thanks for your help

You could detect tab change and cancel it in that method. For tab change help - Android TabWidget detect click on current tab

Toast's are not tied with any particular activity as they are an overlay over the screen. If you want to explicitly close the Toast, you need to pass a handle of it to whichever activity needs to close it and call Toast.cancel().

Yeah you can simply call cancel() in onPause() of the activity that has created it.

Related

Android Actionbar tabs Navigation

I am a beginner in android. I have created Tabs using ActionBar tabs. Now I want to implement, when the user in in first tab and clicks back Button activity should close or when the user is in second tab, he clicks the backbutton the app should show the first tab, which will make it as the home tab. I tried using popupbackstack() but it always closes the activity no matter what tab i am in.
please guide me. Thanks in advance.
The easiest way would be record the tab state (i.e., which tab is showing) in the host activity, and override the onBackPressed() method to do what you want.
Some tips:
remember to save the state(override the onSavedInstanceState() and save the tab state) to make you activity works right after restore from onPause().
read about android's recommended navigation style here. What you designed is a little bit different from what android suggests.

Change focus of activities in android

I am using a dialog themed activity in android to show a popup from a application context. The dialog has a transparent theme, but the issue is that I want the underlying activity to have focus and not the popup though the popup must be visble. How do I achieve this in android?
I think you would have to use a Fragment and just make it look like a popup dialog.
You can not switch focus between activities. There's only one activity "on focus" at the time, and is the one that is being displayed at that point. The transparent background doesn't mean you can access the activity below.
If i don't get it wrong, you want to be able to interact with the activity's controls while having a "Dialog" on the screen. Any sort of Dialog class from Android will not help, since they take the focus away. Not really sure about PopupWindow, but i'm guessing will be the same thing as the documentation says "that appears on top of the current activity."
You are going to have to create a custom dialog using a RelativeLayout/FrameLayout within your activity.

Refresh tab contents even when returning to the application from a home button pressed

I want to refresh the tab with its latest content, even if the user is coming back to the activity from a previous home button click.
You should override onSaveInstanceState() as explained in this question.
Just make sure you update the tab inside of Activity.onResume().

How to navigate between Tabs in android

I have created a TabActivity in my android application. When user selects the second tab, an alert dialog will appear. Is there any way to navigate to the previous tab when user clicks the cancel button for the dialog box.
regards
dj
I found the solution here:
Android - Switch Tabs from within an Activity within a tab
In my case, I have used the solution of 'GrandPrix'.
I think you need to first know about the Tab Widget:
http://developer.android.com/resources/tutorials/views/hello-tabwidget.html
http://www.androidpeople.com/android-tabhost-tutorial-part-1/
You can set the tab using setCurrentTab method:
tab_host.setCurrentTab(2); // 2nd tab button is showing initially
same way, you can set the tab-button on the cancel button.

Android Dialog problem with TabView

My problem is when a dialog is opened, if I change the tab, that dialog is displayed in the activity in the next tab.How to remove that .
Pls help.
This occurs because according to my requirement I can interact with the dialog and the view behind at the same time.
I resolved it by dismissing the dialog in onPause() method
You should check if the dialog is open or not on the click of another tab, if open close it.
You have a tabhost and a framelayout... just identify the tab changed via calling OnTabChangedListener and perform frameLayout.removeAllView(); and then render a dialog again.. I think it may help...!! if not then can u please describe ur problem in brief...

Categories

Resources