用過UCWEB-Android版的人都應(yīng)該對其特殊的menu有印象,把menu做成Tab-Menu(支持分頁的Menu),可以容納比Android傳統(tǒng)的menu更豐富的內(nèi)容(Android的menu超過6項則縮略在[更多]里),本文參考網(wǎng)上的例子(作者:CoffeeCole,email:longkefan@foxmail.com),對例子進(jìn)行簡化以及封裝,使其作為一個復(fù)合控件融入自己的framework。
先來看看本文程序運(yùn)行的效果:
TabMenu本身就是一個PopupWindow,PopupWindow上面放了兩個GridView,第一個GridView就是分頁標(biāo)簽,位于PopupWindow的頂部,第二個GridView是菜單,位于PopupWindow的主體。為了實現(xiàn)PopupWindow的彈出/退出的動畫效果,本文使用了以下代碼:
在工程的res文件夾里添加anim子目錄,再新建文件popup_enter.xml:
[xhtml] view plaincopyprint?
《?xml version=“1.0” encoding=“utf-8”?》
《set xmlns:android=“http://schemas.android.com/apk/res/android”》
《translate android:fromYDelta=“100%p” android:toYDelta=“0” android:duration=“1000” /》
《alpha android:fromAlpha=“0.0” android:toAlpha=“1.0” android:duration=“1000” /》
《/set》
《?xml version=“1.0” encoding=“utf-8”?》
《set xmlns:android=“http://schemas.android.com/apk/res/android”》
《translate android:fromYDelta=“100%p” android:toYDelta=“0” android:duration=“1000” /》
《alpha android:fromAlpha=“0.0” android:toAlpha=“1.0” android:duration=“1000” /》
《/set》
新建文件popup_exit.xml:
?。踴html] view plaincopyprint?
《?xml version=“1.0” encoding=“utf-8”?》
《set xmlns:android=“http://schemas.android.com/apk/res/android”》
《translate android:fromYDelta=“0” android:toYDelta=“100%p” android:duration=“1000” /》
《alpha android:fromAlpha=“1.0” android:toAlpha=“0.0” android:duration=“1000” /》
《/set》
《?xml version=“1.0” encoding=“utf-8”?》
《set xmlns:android=“http://schemas.android.com/apk/res/android”》
《translate android:fromYDelta=“0” android:toYDelta=“100%p” android:duration=“1000” /》
《alpha android:fromAlpha=“1.0” android:toAlpha=“0.0” android:duration=“1000” /》
《/set》
在工程的values文件夾里新建文件popup_animation.xml:
《?xml version=“1.0” encoding=“utf-8”?》
《resources》
《style name=“PopupAnimation” parent=“android:Animation”》
《item name=“android:windowEnterAnimation”》@anim/popup_enter《/item》
《item name=“android:windowExitAnimation”》@anim/popup_exit《/item》
《/style》
《/resources》
main.xml的源碼如下:
?。踴html] view plaincopyprint?
《?xml version=“1.0” encoding=“utf-8”?》
《LinearLayout android:id=“@+id/LinearLayout01”
android:layout_width=“fill_parent” android:layout_height=“fill_parent”
xmlns:android=“http://schemas.android.com/apk/res/android”》
《TextView android:id=“@+id/TextView01” android:layout_height=“wrap_content”
android:layout_width=“fill_parent” android:text=“擴(kuò)展Menu----hellogv”》《/TextView》
《/LinearLayout》
《?xml version=“1.0” encoding=“utf-8”?》
《LinearLayout android:id=“@+id/LinearLayout01”
android:layout_width=“fill_parent” android:layout_height=“fill_parent”
xmlns:android=“http://schemas.android.com/apk/res/android”》
《TextView android:id=“@+id/TextView01” android:layout_height=“wrap_content”
android:layout_width=“fill_parent” android:text=“擴(kuò)展Menu----hellogv”》《/TextView》
《/LinearLayout》
TabMenu的封裝類TabMenu.java的源碼如下:
?。踛ava] view plaincopyprint?
package com.testTabMenu;
import android.content.Context;
import android.graphics.Color;
import android.graphics.drawable.ColorDrawable;
import android.view.Gravity;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.GridView;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.PopupWindow;
import android.widget.TextView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.LinearLayout.LayoutParams;
public class TabMenu extends PopupWindow{
private GridView gvBody, gvTitle;
private LinearLayout mLayout;
private MenuTitleAdapter titleAdapter;
public TabMenu(Context context,OnItemClickListener titleClick,OnItemClickListener bodyClick,
MenuTitleAdapter titleAdapter,int colorBgTabMenu,int aniTabMenu){
super(context);
mLayout = new LinearLayout(context);
mLayout.setOrientation(LinearLayout.VERTICAL);
//標(biāo)題選項欄
gvTitle = new GridView(context);
gvTitle.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
gvTitle.setNumColumns(titleAdapter.getCount());
gvTitle.setStretchMode(GridView.STRETCH_COLUMN_WIDTH);
gvTitle.setVerticalSpacing(1);
gvTitle.setHorizontalSpacing(1);
gvTitle.setGravity(Gravity.CENTER);
gvTitle.setOnItemClickListener(titleClick);
gvTitle.setAdapter(titleAdapter);
gvTitle.setSelector(new ColorDrawable(Color.TRANSPARENT));//選中的時候為透明色
this.titleAdapter=titleAdapter;
//子選項欄
gvBody = new GridView(context);
gvBody.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT));
gvBody.setSelector(new ColorDrawable(Color.TRANSPARENT));//選中的時候為透明色
gvBody.setNumColumns(4);
gvBody.setStretchMode(GridView.STRETCH_COLUMN_WIDTH);
gvBody.setVerticalSpacing(10);
gvBody.setHorizontalSpacing(10);
gvBody.setPadding(10, 10, 10, 10);
gvBody.setGravity(Gravity.CENTER);
gvBody.setOnItemClickListener(bodyClick);
mLayout.addView(gvTitle);
mLayout.addView(gvBody);
//設(shè)置默認(rèn)項
this.setContentView(mLayout);
this.setWidth(LayoutParams.FILL_PARENT);
this.setHeight(LayoutParams.WRAP_CONTENT);
this.setBackgroundDrawable(new ColorDrawable(colorBgTabMenu));// 設(shè)置TabMenu菜單背景
this.setAnimationStyle(aniTabMenu);
this.setFocusable(true);// menu菜單獲得焦點 如果沒有獲得焦點menu菜單中的控件事件無法響應(yīng)
}
public void SetTitleSelect(int index)
{
gvTitle.setSelection(index);
this.titleAdapter.SetFocus(index);
}
public void SetBodySelect(int index,int colorSelBody)
{
int count=gvBody.getChildCount();
for(int i=0;i《count;i++)
{
if(i!=index)
?。ǎ↙inearLayout)gvBody.getChildAt(i)).setBackgroundColor(Color.TRANSPARENT);
}
?。ǎ↙inearLayout)gvBody.getChildAt(index)).setBackgroundColor(colorSelBody);
}
public void SetBodyAdapter(MenuBodyAdapter bodyAdapter)
{
gvBody.setAdapter(bodyAdapter);
}
/**
* 自定義Adapter,TabMenu的每個分頁的主體
*
*/
static public class MenuBodyAdapter extends BaseAdapter {
private Context mContext;
private int fontColor,fontSize;
private String[] texts;
private int[] resID;
評論
查看更多