Advertisement
minafaw3

Questions_Fragment

Oct 25th, 2015
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.02 KB | None | 0 0
  1. package com.imaadv.leaynik.Activities;
  2.  
  3. import android.content.Context;
  4. import android.graphics.Color;
  5. import android.os.Bundle;
  6. import android.support.v4.app.Fragment;
  7. import android.support.v4.app.FragmentActivity;
  8. import android.support.v4.app.FragmentPagerAdapter;
  9. import android.support.v4.view.ViewPager;
  10. import android.view.LayoutInflater;
  11. import android.view.View;
  12. import android.view.View.OnClickListener;
  13. import android.view.ViewGroup;
  14. import android.widget.TabHost;
  15. import android.widget.TabWidget;
  16. import android.widget.TextView;
  17.  
  18. import com.imaadv.leaynik.R;
  19.  
  20. import java.util.ArrayList;
  21.  
  22. public class Questions_Fragment extends Fragment implements OnClickListener {
  23.  
  24. private TabHost mTabHost;
  25. private ViewPager mpager;
  26. private TabsAdapter adapter;
  27.  
  28. public static Questions_Fragment newInstance() {
  29. Questions_Fragment fragment = new Questions_Fragment();
  30. return fragment;
  31. }
  32.  
  33. @Override
  34. public View onCreateView(LayoutInflater inflater, ViewGroup container,
  35. Bundle savedInstanceState) {
  36. View v = inflater.inflate(R.layout.tabs_layout, null);
  37.  
  38. mTabHost = (TabHost) v.findViewById(android.R.id.tabhost);
  39. mTabHost.setup();
  40. mpager = (ViewPager) v.findViewById(R.id.pager);
  41. adapter = new TabsAdapter(getActivity(), mTabHost, mpager);
  42. adapter.addTab(
  43. mTabHost.newTabSpec("").setIndicator(
  44. getResources().getString(R.string.newest)),
  45. MostRecent.class, null);
  46. adapter.addTab(
  47. mTabHost.newTabSpec("").setIndicator(
  48. getResources().getString(R.string.notanswerd)),
  49. NotAnswerd.class, null);
  50. adapter.addTab(
  51. mTabHost.newTabSpec("").setIndicator(
  52. getResources().getString(R.string.allposts)),
  53. AllPosts.class, null);
  54. for (int i = 0; i < mTabHost.getTabWidget().getChildCount(); i++) {
  55. mTabHost.getTabWidget().getChildAt(i)
  56. .setBackgroundResource(R.drawable.tab_indicator_ab_example);
  57. // mTabHost.getTabWidget().getChildAt(i).setBackgroundColor(Color.parseColor("#FFFFFF"));//(R.drawable.tab_indicator_ab_example);
  58. final TextView tv = (TextView) mTabHost.getTabWidget()
  59. .getChildAt(i).findViewById(android.R.id.title);
  60. tv.setTextColor(Color.parseColor("#4497e3"));
  61. }
  62. // mTabHost.getTabWidget().setCurrentTab(1);
  63. // mTabHost.getTabWidget().getChildAt(1).setBackgroundColor(R.drawable.tab_indicator_ab_example);
  64.  
  65.  
  66. return v;
  67. }
  68.  
  69. public static class TabsAdapter extends FragmentPagerAdapter implements
  70. TabHost.OnTabChangeListener, ViewPager.OnPageChangeListener {
  71. private final Context mContext;
  72. private final TabHost mTabHost;
  73. private final ViewPager mViewPager;
  74. private final ArrayList<TabInfo> mTabs = new ArrayList<TabInfo>();
  75.  
  76. static final class TabInfo {
  77. private final String tag;
  78. private final Class<?> clss;
  79. private final Bundle args;
  80.  
  81. TabInfo(String _tag, Class<?> _class, Bundle _args) {
  82. tag = _tag;
  83. clss = _class;
  84. args = _args;
  85. }
  86. }
  87.  
  88. static class DummyTabFactory implements TabHost.TabContentFactory {
  89. private final Context mContext;
  90.  
  91. public DummyTabFactory(Context context) {
  92. mContext = context;
  93. }
  94.  
  95. @Override
  96. public View createTabContent(String tag) {
  97. View v = null;
  98. try {
  99. v = new View(mContext);
  100. v.setMinimumWidth(0);
  101. v.setMinimumHeight(0);
  102. } catch (Exception e) {
  103. // TODO Auto-generated catch block
  104. e.printStackTrace();
  105. }
  106. return v;
  107. }
  108. }
  109.  
  110. public TabsAdapter(FragmentActivity activity, TabHost tabHost,
  111. ViewPager pager) {
  112. super(activity.getSupportFragmentManager());
  113. mContext = activity;
  114. mTabHost = tabHost;
  115. mViewPager = pager;
  116. mTabHost.setOnTabChangedListener(this);
  117. mViewPager.setAdapter(this);
  118. mViewPager.setOnPageChangeListener(this);
  119. }
  120.  
  121. public void addTab(TabHost.TabSpec tabSpec, Class<?> clss, Bundle args) {
  122. try {
  123. tabSpec.setContent(new DummyTabFactory(mContext));
  124. String tag = tabSpec.getTag();
  125.  
  126. TabInfo info = new TabInfo(tag, clss, args);
  127. mTabs.add(info);
  128. mTabHost.addTab(tabSpec);
  129. notifyDataSetChanged();
  130. } catch (Exception e) {
  131. // TODO Auto-generated catch block
  132. e.printStackTrace();
  133. }
  134. }
  135.  
  136. @Override
  137. public int getCount() {
  138. return mTabs.size();
  139. }
  140.  
  141. @Override
  142. public Fragment getItem(int position) {
  143. TabInfo info = mTabs.get(position);
  144. return Fragment.instantiate(mContext, info.clss.getName(),
  145. info.args);
  146. }
  147.  
  148. @Override
  149. public void onTabChanged(String tabId) {
  150. int position = mTabHost.getCurrentTab();
  151. // mTabHost.getTabWidget().getChildAt(position).setBackgroundColor(Color.parseColor("#2962FF"));//(R.drawable.tab_indicator_ab_example);
  152. // for(int i=0;i<mTabHost.getTabWidget().getChildCount();i++)
  153. // {
  154. // mTabHost.getTabWidget().getChildAt(i).setBackgroundResource(R.drawable.tab_indicator_ab_example);
  155. // final TextView tv = (TextView)
  156. // mTabHost.getTabWidget().getChildAt(i).findViewById(android.R.id.title);
  157. // tv.setTextColor(Color.parseColor("#FFFFFF"));
  158. //
  159. // }
  160. // mTabHost.getTabWidget().getChildAt(position).setBackgroundResource(R.drawable.tab_indicator_ab_example);
  161. // final TextView tv = (TextView)
  162. // mTabHost.getTabWidget().getChildAt(position).findViewById(android.R.id.title);
  163. // tv.setTextColor(Color.parseColor("#4497e3"));
  164. mViewPager.setCurrentItem(position);
  165. }
  166.  
  167. @Override
  168. public void onPageScrolled(int position, float positionOffset,
  169. int positionOffsetPixels) {
  170. }
  171.  
  172. @Override
  173. public void onPageSelected(int position) {
  174.  
  175. try {
  176. TabWidget widget = mTabHost.getTabWidget();
  177. int oldFocusability = widget.getDescendantFocusability();
  178. widget.setDescendantFocusability(ViewGroup.FOCUS_BLOCK_DESCENDANTS);
  179. mTabHost.setCurrentTab(position);
  180. widget.setDescendantFocusability(oldFocusability);
  181. } catch (Exception e) {
  182. // TODO Auto-generated catch block
  183. e.printStackTrace();
  184. }
  185. }
  186.  
  187. @Override
  188. public void onPageScrollStateChanged(int state) {
  189. }
  190. }
  191.  
  192. @Override
  193. public void onClick(View arg0) {
  194.  
  195.  
  196. }
  197.  
  198. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement