您好,登錄后才能下訂單哦!
最近在做一個仿電商的APP,由于前面使用了Fragment技術,現在想要在一個Fragment中做出TabHost的界面效果,經過查找資料找到了解決辦法,特分享出來!(新人勿噴!)
首先要使用的控件是Support V4里面的控件,XML如圖
<android.support.v4.app.FragmentTabHost xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/tabhost" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_below="@+id/action_fun" > <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <TabWidget android:id="@android:id/tabs" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="0" android:orientation="horizontal" > </TabWidget> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:layout_weight="1" > <ImageView android:id="@+id/img_scrollbar_fun" android:layout_width="match_parent" android:layout_height="4dp" android:layout_weight="2" android:scaleType="fitXY" android:src="@drawable/scrollbar" /> <View android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="0dp" android:layout_weight="1" /> </LinearLayout> <FrameLayout android:id="@android:id/tabcontent" android:layout_width="0dp" android:layout_height="0dp" android:layout_weight="0" /> <FrameLayout android:id="@+id/realtabcontent" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" /> </LinearLayout> </android.support.v4.app.FragmentTabHost>
這個XML是從Support V4中找的控件,多出來的是自定義的動態滾動條。
下面是具體的代碼實現,如下
public class FUNFragment extends Fragment implements OnTabChangeListener { public FUNFragment() { // Required empty public constructor } private FragmentTabHost mTabHost_fun; private String[] fun_tabs = new String[] { "推薦", "標簽","關注"}; private ImageView mImgScrollbar_fun; private float lastoffset_fun; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View layout = inflater.inflate(R.layout.fragment_fun, container, false); mImgScrollbar_fun = (ImageView) layout.findViewById(R.id.img_scrollbar_fun); initActionBar(); // initTabFragment(); initTabHost(layout); return layout; } private void initActionBar() { FragmentManager fm = getChildFragmentManager(); FragmentTransaction ft = fm.beginTransaction(); ActionFragment actionFragment = new ActionFragment(); ft.add(R.id.action_fun, actionFragment); actionFragment.setActionName("FUN"); ft.commit(); } //初始化FragmentTabHost public void initTabHost(View layout) { mTabHost_fun = (FragmentTabHost)layout.findViewById(android.R.id.tabhost); mTabHost_fun.setup(getActivity(), getChildFragmentManager(), R.id.realtabcontent); mTabHost_fun.setOnTabChangedListener(this); for (int i = 0; i < fun_tabs.length; i++) { View view = getActivity().getLayoutInflater().inflate( R.layout.fun_tabhost_item, null); TextView mTextView = (TextView) view.findViewById(R.id.tv_fun_tab); mTextView.setText(fun_tabs[i]); mTabHost_fun.addTab(mTabHost_fun.newTabSpec("tag" + i).setIndicator(view), RecFragment.class, null); } } @Override public void onTabChanged(String tabId) { int position = mTabHost_fun.getCurrentTab(); //設置滾動動畫條 setScrollAnimation(position); } //設置 private void setScrollAnimation(int position) { //獲取屏幕的寬度 WindowManager mWindowManager = (WindowManager) getActivity().getSystemService(Context.WINDOW_SERVICE); Display display = mWindowManager.getDefaultDisplay(); @SuppressWarnings("deprecation") int width = display.getWidth(); //獲取滾動條的偏移量 int offset = width/fun_tabs.length; //使用開源項目nineold設置滾動動畫 ObjectAnimator ofFloat = ObjectAnimator.ofFloat(mImgScrollbar_fun, "translationX", lastoffset_fun, position*offset); ofFloat.setInterpolator(new DecelerateInterpolator()); ofFloat.setDuration(500).start(); //前一次偏移的位置 lastoffset_fun = position*offset; } }
將此記錄下來,也是為自己學習Android做個留念。希望對剛學習Android的朋友有點幫助。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。