好久没有Android方面的文章出来,今天正好有时间就来写点界面方面的东西。
Fragment的含义是“碎片”,在Android中Fragment不能单独使用,必须嵌入到某个Activity中。下面我们通过一个Tab切换的一个底部菜单栏例子看看Fragment如何使用。
Fragment是Android 3.0以后提出来的概念,那么我们的工程希望能在手机上运行,我们需要建立一个Android 4.0的工程。
另外我在工程中大量用到了xUtils工具类(这是个很实用的工具类,我会以后单独开系列进行讲解),所以需要将其lib文件添加到classpath中。
<!-- 添加的权限,供xUtils使用 --> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:drawable="@drawable/icon_1" android:state_selected="true"/> <item android:drawable="@drawable/icon_on_1"/> </selector>其他三个文件都类似,全部将其放到res/drawable目录中。
主Activity的布局如下:
<?xml version="1.0" encoding="UTF-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/gray" android:orientation="vertical" > <!-- Frame容器,用于TabHost切换Frame内容 --> <FrameLayout android:id="@+id/main_fragmentContainer" android:layout_width="match_parent" android:layout_height="0dip" android:background="@color/white" android:layout_weight="1"/> <!-- 标签按钮栏 --> <android.support.v4.app.FragmentTabHost android:id="@+id/main_fragmenttabhost" android:layout_width="match_parent" android:layout_height="wrap_content"> </android.support.v4.app.FragmentTabHost> </LinearLayout>
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:gravity="center" android:orientation="vertical"> <!-- 通过使用TextView加上代码中使用tv.setCompoundDrawables的方式更为简洁 <TextView android:id="@+id/tabButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="@color/textgray" android:textSize="12sp" android:clickable="false" android:background="@android:color/transparent" android:gravity="center" /> --> <ImageView android:id="@+id/tabImage" android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingTop="10dip" android:contentDescription="@string/app_name" /> <Button android:id="@+id/tabButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="@color/textgray" android:textSize="12sp" android:clickable="false" android:background="@android:color/transparent" android:gravity="center"/> </LinearLayout>
<?xml version="1.0" encoding="utf-8"?> <resources> <color name="gray">#484848</color> <color name="white">#FFFFFF</color> <color name="black">#000000</color> <color name="textgray">#8f8f8f</color> <color name="background">#00FF00</color> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">FragmentActivityDemo</string> <string name="action_settings">Settings</string> <string name="hello_world">Hello world!</string> <!-- activity_main --> <string name="tab_1">Tab1</string> <string name="tab_2">Tab2</string> <string name="tab_3">Tab3</string> <string name="tab_4">Tab4</string> </resources>
public class Fragment1 extends Fragment { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // 通过布局文件生成一个新的view View view = inflater.inflate(R.layout.fragment_1, container, false); // 将view与工具类ViewUtils做一次注入(xUtils要求) ViewUtils.inject(this, view); return view; }
@ContentView(R.layout.activity_main) public class MainActivity extends FragmentActivity { @ViewInject(R.id.main_fragmenttabhost) private FragmentTabHost main_tabhost; @SuppressWarnings("rawtypes") private Class fragmentClasses[] = { Fragment1.class, Fragment2.class, Fragment3.class, Fragment4.class }; // 关于Tab按钮icon的设置保存在/drawable目录下的几个xml文件中 private int tabIconRes[] = { R.drawable.tab_icon_1, R.drawable.tab_icon_2, R.drawable.tab_icon_3, R.drawable.tab_icon_4 }; private int tabTextRes[] = { R.string.tab_1, R.string.tab_2, R.string.tab_3, R.string.tab_4 }; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // 注入 ViewUtils.inject(this); initTabs(); } private void initTabs() { // 设置Frame界面的容器 main_tabhost.setup(this, getSupportFragmentManager(), R.id.main_fragmentContainer); for (int i = 0; i < fragmentClasses.length; i++) { // 设置每一个Tab按钮 TabHost.TabSpec tabSpec = main_tabhost.newTabSpec(getString(tabTextRes[i])) .setIndicator(getTabItemView(i)); main_tabhost.addTab(tabSpec, fragmentClasses[i], null); main_tabhost .getTabWidget() .getChildAt(i) .setBackgroundResource( R.drawable.selector_navbar_background); } } @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.main, menu); return true; } private View getTabItemView(int i) { LayoutInflater layoutInflater = LayoutInflater.from(this); View view = layoutInflater.inflate(R.layout.tabbar_item, null); Resources res = this.getResources(); // 设置按钮文字 Button btn = (Button) view.findViewById(R.id.tabButton); btn.setText(res.getText(tabTextRes[i])); // 如果是TextView可以用下面的代码设置Image,完全不使用ImageView // Drawable drawable = res.getDrawable(tabIconRes[i]); // Bitmap bmp = BitmapFactory.decodeResource(res, R.drawable.tab_icon_sample); // drawable.setBounds(0, 0, bmp.getWidth(), bmp.getHeight()); // btn.setCompoundDrawables(null, drawable, null, null); ImageView img = (ImageView) view.findViewById(R.id.tabImage); img.setImageResource(tabIconRes[i]); return view; } }