I am using http://www.androidhive.info/2013/10/android-tab-layout-with-swipeable-views-1/ to make Tab bar.
I have also 3 tab first and the second Tab view contains a List view and third on e is Settings.
Settings Contain Reload button. When I clicked the Reload Button I want to move to First Tab.
How can I do this ?
Moving From one tab view to another by button Click Android ActionBar
8.8k Views Asked by Renjith Krishnan At
3
There are 3 best solutions below
1

Do this:
btn.setOnClickListener(new OnClickListener()
{
onClick(View v)
{
//Reload the data
tabHost.setCurrentTab(/*destination-tab-id*/);
}
}
)
0

I know its quite late ....maybe it can help someone else...creating a constructor in fragments is not supported..so instead of passing viewpager as constructor.. we can write in the fragment on button click:
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.view.ViewPager;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
/**
* Created by medha singh on 6/17/2016.
*/
public class Fragment4 extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
super.onCreateView(inflater, container, savedInstanceState);
final View view1 = inflater.inflate(R.layout.new_lead2, container, false);
TextView tv=(TextView)view1.findViewById(R.id.hardware);
final ViewPager pager= (ViewPager)getActivity().findViewById(R.id.pager2);
tv.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
pager.setCurrentItem(1);
}
});
return view1;
}
}
So getactivity() is the solution: i got it from here: How to go other Tabs by clicking on a Button from the current Tab in Android?
Make following changes:
Pass the viewPager reference to your adapter and from adapter to your fragment:
In fragment on click of button call set selection on view pager object: