- 浏览: 931554 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
itzhongyuan:
java Random类详解 -
david_je:
你好,我看到你在C里面回调JAVA里面的方法是在native里 ...
Android NDK开发(1)----- Java与C互相调用实例详解 -
fykyx521:
请求锁是在 oncreate 释放实在ondestroy?? ...
Android如何保持程序一直运行 -
aduo_vip:
不错,总结得好!
Android读取assets目录下的资源 -
f839903061:
给的网址很给力哦!
Android 4.0.1 源码下载,编译和运行
用过UCWEB-Android版的人都应该对其特殊的menu有印象,把menu做成Tab-Menu(支持分页的Menu),可以容纳比Android传统的menu更丰富的内容(Android的menu超过6项则缩略在[更多]里),本文参考网上的例子(作者:CoffeeCole,email:longkefan@foxmail.com),对例子进行简化以及封装,使其作为一个复合控件融入自己的framework。
TabMenu本身就是一个PopupWindow,PopupWindow上面放了两个GridView,第一个GridView就是分页标签,位于PopupWindow的顶部,第二个GridView是菜单,位于PopupWindow的主体。为了实现PopupWindow的弹出/退出的动画效果,本文使用了以下代码:
在工程的res文件夹里添加anim子目录,再新建文件popup_enter.xml:
01.<?xml version="1.0" encoding="utf-8"?>
02.<set xmlns:android="http://schemas.android.com/apk/res/android">
03. <translate android:fromYDelta="100%p" android:toYDelta="0" android:duration="1000" />
04. <alpha android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="1000" />
05.</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:
01.<?xml version="1.0" encoding="utf-8"?>
02.<set xmlns:android="http://schemas.android.com/apk/res/android">
03. <translate android:fromYDelta="0" android:toYDelta="100%p" android:duration="1000" />
04. <alpha android:fromAlpha="1.0" android:toAlpha="0.0" android:duration="1000" />
05.</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的源码如下:
01.<?xml version="1.0" encoding="utf-8"?>
02.<LinearLayout android:id="@+id/LinearLayout01"
03. android:layout_width="fill_parent" android:layout_height="fill_parent"
04. xmlns:android="http://schemas.android.com/apk/res/android">
05. <TextView android:id="@+id/TextView01" android:layout_height="wrap_content"
06. android:layout_width="fill_parent" android:text="扩展Menu----hellogv"></TextView>
07.</LinearLayout>
TabMenu的封装类TabMenu.java的源码如下:
01.package com.testTabMenu;
02.import android.content.Context;
03.import android.graphics.Color;
04.import android.graphics.drawable.ColorDrawable;
05.import android.view.Gravity;
06.import android.view.View;
07.import android.view.ViewGroup;
08.import android.widget.BaseAdapter;
09.import android.widget.GridView;
10.import android.widget.ImageView;
11.import android.widget.LinearLayout;
12.import android.widget.PopupWindow;
13.import android.widget.TextView;
14.import android.widget.AdapterView.OnItemClickListener;
15.import android.widget.LinearLayout.LayoutParams;
16.public class TabMenu extends PopupWindow{
17. private GridView gvBody, gvTitle;
18. private LinearLayout mLayout;
19. private MenuTitleAdapter titleAdapter;
20. public TabMenu(Context context,OnItemClickListener titleClick,OnItemClickListener bodyClick,
21. MenuTitleAdapter titleAdapter,int colorBgTabMenu,int aniTabMenu){
22. super(context);
23.
24. mLayout = new LinearLayout(context);
25. mLayout.setOrientation(LinearLayout.VERTICAL);
26. //标题选项栏
27. gvTitle = new GridView(context);
28. gvTitle.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
29. gvTitle.setNumColumns(titleAdapter.getCount());
30. gvTitle.setStretchMode(GridView.STRETCH_COLUMN_WIDTH);
31. gvTitle.setVerticalSpacing(1);
32. gvTitle.setHorizontalSpacing(1);
33. gvTitle.setGravity(Gravity.CENTER);
34. gvTitle.setOnItemClickListener(titleClick);
35. gvTitle.setAdapter(titleAdapter);
36. gvTitle.setSelector(new ColorDrawable(Color.TRANSPARENT));//选中的时候为透明色
37. this.titleAdapter=titleAdapter;
38. //子选项栏
39. gvBody = new GridView(context);
40. gvBody.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT));
41. gvBody.setSelector(new ColorDrawable(Color.TRANSPARENT));//选中的时候为透明色
42. gvBody.setNumColumns(4);
43. gvBody.setStretchMode(GridView.STRETCH_COLUMN_WIDTH);
44. gvBody.setVerticalSpacing(10);
45. gvBody.setHorizontalSpacing(10);
46. gvBody.setPadding(10, 10, 10, 10);
47. gvBody.setGravity(Gravity.CENTER);
48. gvBody.setOnItemClickListener(bodyClick);
49. mLayout.addView(gvTitle);
50. mLayout.addView(gvBody);
51.
52. //设置默认项
53. this.setContentView(mLayout);
54. this.setWidth(LayoutParams.FILL_PARENT);
55. this.setHeight(LayoutParams.WRAP_CONTENT);
56. this.setBackgroundDrawable(new ColorDrawable(colorBgTabMenu));// 设置TabMenu菜单背景
57. this.setAnimationStyle(aniTabMenu);
58. this.setFocusable(true);// menu菜单获得焦点 如果没有获得焦点menu菜单中的控件事件无法响应
59. }
60.
61.
62. public void SetTitleSelect(int index)
63. {
64. gvTitle.setSelection(index);
65. this.titleAdapter.SetFocus(index);
66. }
67.
68. public void SetBodySelect(int index,int colorSelBody)
69. {
70. int count=gvBody.getChildCount();
71. for(int i=0;i<count;i++)
72. {
73. if(i!=index)
74. ((LinearLayout)gvBody.getChildAt(i)).setBackgroundColor(Color.TRANSPARENT);
75. }
76. ((LinearLayout)gvBody.getChildAt(index)).setBackgroundColor(colorSelBody);
77. }
78.
79. public void SetBodyAdapter(MenuBodyAdapter bodyAdapter)
80. {
81. gvBody.setAdapter(bodyAdapter);
82. }
83.
84. /**
85. * 自定义Adapter,TabMenu的每个分页的主体
86. *
87. */
88. static public class MenuBodyAdapter extends BaseAdapter {
89. private Context mContext;
90. private int fontColor,fontSize;
91. private String[] texts;
92. private int[] resID;
93. /**
94. * 设置TabMenu的分页主体
95. * @param context 调用方的上下文
96. * @param texts 按钮集合的字符串数组
97. * @param resID 按钮集合的图标资源数组
98. * @param fontSize 按钮字体大小
99. * @param color 按钮字体颜色
100. */
101. public MenuBodyAdapter(Context context, String[] texts,int[] resID, int fontSize,int fontColor)
102. {
103. this.mContext = context;
104. this.fontColor = fontColor;
105. this.texts = texts;
106. this.fontSize=fontSize;
107. this.resID=resID;
108. }
109. public int getCount() {
110. return texts.length;
111. }
112. public Object getItem(int position) {
113.
114. return makeMenyBody(position);
115. }
116. public long getItemId(int position) {
117. return position;
118. }
119.
120. private LinearLayout makeMenyBody(int position)
121. {
122. LinearLayout result=new LinearLayout(this.mContext);
123. result.setOrientation(LinearLayout.VERTICAL);
124. result.setGravity(Gravity.CENTER_HORIZONTAL|Gravity.CENTER_VERTICAL);
125. result.setPadding(10, 10, 10, 10);
126.
127. TextView text = new TextView(this.mContext);
128. text.setText(texts[position]);
129. text.setTextSize(fontSize);
130. text.setTextColor(fontColor);
131. text.setGravity(Gravity.CENTER);
132. text.setPadding(5, 5, 5, 5);
133. ImageView img=new ImageView(this.mContext);
134. img.setBackgroundResource(resID[position]);
135. result.addView(img,new LinearLayout.LayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT)));
136. result.addView(text);
137. return result;
138. }
139.
140. public View getView(int position, View convertView, ViewGroup parent) {
141. return makeMenyBody(position);
142. }
143. }
144.
145.
146. /**
147. * 自定义Adapter,TabMenu的分页标签部分
148. *
149. */
150. static public class MenuTitleAdapter extends BaseAdapter {
151. private Context mContext;
152. private int fontColor,unselcolor,selcolor;
153. private TextView[] title;
154. /**
155. * 设置TabMenu的title
156. * @param context 调用方的上下文
157. * @param titles 分页标签的字符串数组
158. * @param fontSize 字体大小
159. * @param fontcolor 字体颜色
160. * @param unselcolor 未选中项的背景色
161. * @param selcolor 选中项的背景色
162. */
163. public MenuTitleAdapter(Context context, String[] titles, int fontSize,
164. int fontcolor,int unselcolor,int selcolor) {
165. this.mContext = context;
166. this.fontColor = fontcolor;
167. this.unselcolor = unselcolor;
168. this.selcolor=selcolor;
169. this.title = new TextView[titles.length];
170. for (int i = 0; i < titles.length; i++) {
171. title[i] = new TextView(mContext);
172. title[i].setText(titles[i]);
173. title[i].setTextSize(fontSize);
174. title[i].setTextColor(fontColor);
175. title[i].setGravity(Gravity.CENTER);
176. title[i].setPadding(10, 10, 10, 10);
177. }
178. }
179. public int getCount() {
180. return title.length;
181. }
182. public Object getItem(int position) {
183. return title[position];
184. }
185. public long getItemId(int position) {
186. return title[position].getId();
187. }
188. /**
189. * 设置选中的效果
190. */
191. private void SetFocus(int index)
192. {
193. for(int i=0;i<title.length;i++)
194. {
195. if(i!=index)
196. {
197. title[i].setBackgroundDrawable(new ColorDrawable(unselcolor));//设置没选中的颜色
198. title[i].setTextColor(fontColor);//设置没选中项的字体颜色
199. }
200. }
201. title[index].setBackgroundColor(0x00);//设置选中项的颜色
202. title[index].setTextColor(selcolor);//设置选中项的字体颜色
203. }
204.
205. public View getView(int position, View convertView, ViewGroup parent) {
206. View v;
207. if (convertView == null) {
208. v = title[position];
209. } else {
210. v = convertView;
211. }
212. return v;
213. }
214. }
215.}
testTabMenu介绍了数据的定义以及TabMenu的使用,源码如下:
01.package com.testTabMenu;
02.import android.app.Activity;
03.import android.graphics.Color;
04.import android.os.Bundle;
05.import android.view.Gravity;
06.import android.view.Menu;
07.import android.view.View;
08.import android.widget.AdapterView;
09.import android.widget.AdapterView.OnItemClickListener;
10.import android.widget.Toast;
11.public class testTabMenu extends Activity {
12. TabMenu.MenuBodyAdapter []bodyAdapter=new TabMenu.MenuBodyAdapter[3];
13. TabMenu.MenuTitleAdapter titleAdapter;
14. TabMenu tabMenu;
15. int selTitle=0;
16. @Override
17. public void onCreate(Bundle savedInstanceState) {
18. super.onCreate(savedInstanceState);
19. setContentView(R.layout.main);
20. //设置分页栏的标题
21. titleAdapter = new TabMenu.MenuTitleAdapter(this, new String[] { "常用",
22. "设置", "工具" }, 16, 0xFF222222,Color.LTGRAY,Color.WHITE);
23. //定义每项分页栏的内容
24. bodyAdapter[0]=new TabMenu.MenuBodyAdapter(this,new String[] { "常用1", "常用2", },
25. new int[] { R.drawable.menu_test,
26. R.drawable.menu_bookmark},13, 0xFFFFFFFF);
27.
28. bodyAdapter[1]=new TabMenu.MenuBodyAdapter(this,new String[] { "设置1", "设置2",
29. "设置3"}, new int[] { R.drawable.menu_edit,
30. R.drawable.menu_delete, R.drawable.menu_fullscreen},13, 0xFFFFFFFF);
31.
32. bodyAdapter[2]=new TabMenu.MenuBodyAdapter(this,new String[] { "工具1", "工具2",
33. "工具3", "工具4" }, new int[] { R.drawable.menu_copy,
34. R.drawable.menu_cut, R.drawable.menu_normalmode,
35. R.drawable.menu_quit },13, 0xFFFFFFFF);
36.
37.
38. tabMenu=new TabMenu(this,
39. new TitleClickEvent(),
40. new BodyClickEvent(),
41. titleAdapter,
42. 0x55123456,//TabMenu的背景颜色
43. R.style.PopupAnimation);//出现与消失的动画
44.
45. tabMenu.update();
46. tabMenu.SetTitleSelect(0);
47. tabMenu.SetBodyAdapter(bodyAdapter[0]);
48. }
49.
50. class TitleClickEvent implements OnItemClickListener{
51. @Override
52. public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
53. long arg3) {
54. selTitle=arg2;
55. tabMenu.SetTitleSelect(arg2);
56. tabMenu.SetBodyAdapter(bodyAdapter[arg2]);
57. }
58. }
59.
60. class BodyClickEvent implements OnItemClickListener{
61. @Override
62. public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
63. long arg3) {
64. tabMenu.SetBodySelect(arg2,Color.GRAY);
65. String str="第"+String.valueOf(selTitle)+"栏\n\r"
66. +"第"+String.valueOf(arg2)+"项";
67. Toast.makeText(testTabMenu.this, str, 500).show();
68.
69. }
70.
71. }
72. @Override
73. /**
74. * 创建MENU
75. */
76. public boolean onCreateOptionsMenu(Menu menu) {
77. menu.add("menu");// 必须创建一项
78. return super.onCreateOptionsMenu(menu);
79. }
80. @Override
81. /**
82. * 拦截MENU
83. */
84. public boolean onMenuOpened(int featureId, Menu menu) {
85. if (tabMenu != null) {
86. if (tabMenu.isShowing())
87. tabMenu.dismiss();
88. else {
89. tabMenu.showAtLocation(findViewById(R.id.LinearLayout01),
90. Gravity.BOTTOM, 0, 0);
91. }
92. }
93. return false;// 返回为true 则显示系统menu
94. }
95.
96.}
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/hellogv/archive/2011/01/28/6168439.aspx
TabMenu本身就是一个PopupWindow,PopupWindow上面放了两个GridView,第一个GridView就是分页标签,位于PopupWindow的顶部,第二个GridView是菜单,位于PopupWindow的主体。为了实现PopupWindow的弹出/退出的动画效果,本文使用了以下代码:
在工程的res文件夹里添加anim子目录,再新建文件popup_enter.xml:
01.<?xml version="1.0" encoding="utf-8"?>
02.<set xmlns:android="http://schemas.android.com/apk/res/android">
03. <translate android:fromYDelta="100%p" android:toYDelta="0" android:duration="1000" />
04. <alpha android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="1000" />
05.</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:
01.<?xml version="1.0" encoding="utf-8"?>
02.<set xmlns:android="http://schemas.android.com/apk/res/android">
03. <translate android:fromYDelta="0" android:toYDelta="100%p" android:duration="1000" />
04. <alpha android:fromAlpha="1.0" android:toAlpha="0.0" android:duration="1000" />
05.</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的源码如下:
01.<?xml version="1.0" encoding="utf-8"?>
02.<LinearLayout android:id="@+id/LinearLayout01"
03. android:layout_width="fill_parent" android:layout_height="fill_parent"
04. xmlns:android="http://schemas.android.com/apk/res/android">
05. <TextView android:id="@+id/TextView01" android:layout_height="wrap_content"
06. android:layout_width="fill_parent" android:text="扩展Menu----hellogv"></TextView>
07.</LinearLayout>
TabMenu的封装类TabMenu.java的源码如下:
01.package com.testTabMenu;
02.import android.content.Context;
03.import android.graphics.Color;
04.import android.graphics.drawable.ColorDrawable;
05.import android.view.Gravity;
06.import android.view.View;
07.import android.view.ViewGroup;
08.import android.widget.BaseAdapter;
09.import android.widget.GridView;
10.import android.widget.ImageView;
11.import android.widget.LinearLayout;
12.import android.widget.PopupWindow;
13.import android.widget.TextView;
14.import android.widget.AdapterView.OnItemClickListener;
15.import android.widget.LinearLayout.LayoutParams;
16.public class TabMenu extends PopupWindow{
17. private GridView gvBody, gvTitle;
18. private LinearLayout mLayout;
19. private MenuTitleAdapter titleAdapter;
20. public TabMenu(Context context,OnItemClickListener titleClick,OnItemClickListener bodyClick,
21. MenuTitleAdapter titleAdapter,int colorBgTabMenu,int aniTabMenu){
22. super(context);
23.
24. mLayout = new LinearLayout(context);
25. mLayout.setOrientation(LinearLayout.VERTICAL);
26. //标题选项栏
27. gvTitle = new GridView(context);
28. gvTitle.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
29. gvTitle.setNumColumns(titleAdapter.getCount());
30. gvTitle.setStretchMode(GridView.STRETCH_COLUMN_WIDTH);
31. gvTitle.setVerticalSpacing(1);
32. gvTitle.setHorizontalSpacing(1);
33. gvTitle.setGravity(Gravity.CENTER);
34. gvTitle.setOnItemClickListener(titleClick);
35. gvTitle.setAdapter(titleAdapter);
36. gvTitle.setSelector(new ColorDrawable(Color.TRANSPARENT));//选中的时候为透明色
37. this.titleAdapter=titleAdapter;
38. //子选项栏
39. gvBody = new GridView(context);
40. gvBody.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT));
41. gvBody.setSelector(new ColorDrawable(Color.TRANSPARENT));//选中的时候为透明色
42. gvBody.setNumColumns(4);
43. gvBody.setStretchMode(GridView.STRETCH_COLUMN_WIDTH);
44. gvBody.setVerticalSpacing(10);
45. gvBody.setHorizontalSpacing(10);
46. gvBody.setPadding(10, 10, 10, 10);
47. gvBody.setGravity(Gravity.CENTER);
48. gvBody.setOnItemClickListener(bodyClick);
49. mLayout.addView(gvTitle);
50. mLayout.addView(gvBody);
51.
52. //设置默认项
53. this.setContentView(mLayout);
54. this.setWidth(LayoutParams.FILL_PARENT);
55. this.setHeight(LayoutParams.WRAP_CONTENT);
56. this.setBackgroundDrawable(new ColorDrawable(colorBgTabMenu));// 设置TabMenu菜单背景
57. this.setAnimationStyle(aniTabMenu);
58. this.setFocusable(true);// menu菜单获得焦点 如果没有获得焦点menu菜单中的控件事件无法响应
59. }
60.
61.
62. public void SetTitleSelect(int index)
63. {
64. gvTitle.setSelection(index);
65. this.titleAdapter.SetFocus(index);
66. }
67.
68. public void SetBodySelect(int index,int colorSelBody)
69. {
70. int count=gvBody.getChildCount();
71. for(int i=0;i<count;i++)
72. {
73. if(i!=index)
74. ((LinearLayout)gvBody.getChildAt(i)).setBackgroundColor(Color.TRANSPARENT);
75. }
76. ((LinearLayout)gvBody.getChildAt(index)).setBackgroundColor(colorSelBody);
77. }
78.
79. public void SetBodyAdapter(MenuBodyAdapter bodyAdapter)
80. {
81. gvBody.setAdapter(bodyAdapter);
82. }
83.
84. /**
85. * 自定义Adapter,TabMenu的每个分页的主体
86. *
87. */
88. static public class MenuBodyAdapter extends BaseAdapter {
89. private Context mContext;
90. private int fontColor,fontSize;
91. private String[] texts;
92. private int[] resID;
93. /**
94. * 设置TabMenu的分页主体
95. * @param context 调用方的上下文
96. * @param texts 按钮集合的字符串数组
97. * @param resID 按钮集合的图标资源数组
98. * @param fontSize 按钮字体大小
99. * @param color 按钮字体颜色
100. */
101. public MenuBodyAdapter(Context context, String[] texts,int[] resID, int fontSize,int fontColor)
102. {
103. this.mContext = context;
104. this.fontColor = fontColor;
105. this.texts = texts;
106. this.fontSize=fontSize;
107. this.resID=resID;
108. }
109. public int getCount() {
110. return texts.length;
111. }
112. public Object getItem(int position) {
113.
114. return makeMenyBody(position);
115. }
116. public long getItemId(int position) {
117. return position;
118. }
119.
120. private LinearLayout makeMenyBody(int position)
121. {
122. LinearLayout result=new LinearLayout(this.mContext);
123. result.setOrientation(LinearLayout.VERTICAL);
124. result.setGravity(Gravity.CENTER_HORIZONTAL|Gravity.CENTER_VERTICAL);
125. result.setPadding(10, 10, 10, 10);
126.
127. TextView text = new TextView(this.mContext);
128. text.setText(texts[position]);
129. text.setTextSize(fontSize);
130. text.setTextColor(fontColor);
131. text.setGravity(Gravity.CENTER);
132. text.setPadding(5, 5, 5, 5);
133. ImageView img=new ImageView(this.mContext);
134. img.setBackgroundResource(resID[position]);
135. result.addView(img,new LinearLayout.LayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT)));
136. result.addView(text);
137. return result;
138. }
139.
140. public View getView(int position, View convertView, ViewGroup parent) {
141. return makeMenyBody(position);
142. }
143. }
144.
145.
146. /**
147. * 自定义Adapter,TabMenu的分页标签部分
148. *
149. */
150. static public class MenuTitleAdapter extends BaseAdapter {
151. private Context mContext;
152. private int fontColor,unselcolor,selcolor;
153. private TextView[] title;
154. /**
155. * 设置TabMenu的title
156. * @param context 调用方的上下文
157. * @param titles 分页标签的字符串数组
158. * @param fontSize 字体大小
159. * @param fontcolor 字体颜色
160. * @param unselcolor 未选中项的背景色
161. * @param selcolor 选中项的背景色
162. */
163. public MenuTitleAdapter(Context context, String[] titles, int fontSize,
164. int fontcolor,int unselcolor,int selcolor) {
165. this.mContext = context;
166. this.fontColor = fontcolor;
167. this.unselcolor = unselcolor;
168. this.selcolor=selcolor;
169. this.title = new TextView[titles.length];
170. for (int i = 0; i < titles.length; i++) {
171. title[i] = new TextView(mContext);
172. title[i].setText(titles[i]);
173. title[i].setTextSize(fontSize);
174. title[i].setTextColor(fontColor);
175. title[i].setGravity(Gravity.CENTER);
176. title[i].setPadding(10, 10, 10, 10);
177. }
178. }
179. public int getCount() {
180. return title.length;
181. }
182. public Object getItem(int position) {
183. return title[position];
184. }
185. public long getItemId(int position) {
186. return title[position].getId();
187. }
188. /**
189. * 设置选中的效果
190. */
191. private void SetFocus(int index)
192. {
193. for(int i=0;i<title.length;i++)
194. {
195. if(i!=index)
196. {
197. title[i].setBackgroundDrawable(new ColorDrawable(unselcolor));//设置没选中的颜色
198. title[i].setTextColor(fontColor);//设置没选中项的字体颜色
199. }
200. }
201. title[index].setBackgroundColor(0x00);//设置选中项的颜色
202. title[index].setTextColor(selcolor);//设置选中项的字体颜色
203. }
204.
205. public View getView(int position, View convertView, ViewGroup parent) {
206. View v;
207. if (convertView == null) {
208. v = title[position];
209. } else {
210. v = convertView;
211. }
212. return v;
213. }
214. }
215.}
testTabMenu介绍了数据的定义以及TabMenu的使用,源码如下:
01.package com.testTabMenu;
02.import android.app.Activity;
03.import android.graphics.Color;
04.import android.os.Bundle;
05.import android.view.Gravity;
06.import android.view.Menu;
07.import android.view.View;
08.import android.widget.AdapterView;
09.import android.widget.AdapterView.OnItemClickListener;
10.import android.widget.Toast;
11.public class testTabMenu extends Activity {
12. TabMenu.MenuBodyAdapter []bodyAdapter=new TabMenu.MenuBodyAdapter[3];
13. TabMenu.MenuTitleAdapter titleAdapter;
14. TabMenu tabMenu;
15. int selTitle=0;
16. @Override
17. public void onCreate(Bundle savedInstanceState) {
18. super.onCreate(savedInstanceState);
19. setContentView(R.layout.main);
20. //设置分页栏的标题
21. titleAdapter = new TabMenu.MenuTitleAdapter(this, new String[] { "常用",
22. "设置", "工具" }, 16, 0xFF222222,Color.LTGRAY,Color.WHITE);
23. //定义每项分页栏的内容
24. bodyAdapter[0]=new TabMenu.MenuBodyAdapter(this,new String[] { "常用1", "常用2", },
25. new int[] { R.drawable.menu_test,
26. R.drawable.menu_bookmark},13, 0xFFFFFFFF);
27.
28. bodyAdapter[1]=new TabMenu.MenuBodyAdapter(this,new String[] { "设置1", "设置2",
29. "设置3"}, new int[] { R.drawable.menu_edit,
30. R.drawable.menu_delete, R.drawable.menu_fullscreen},13, 0xFFFFFFFF);
31.
32. bodyAdapter[2]=new TabMenu.MenuBodyAdapter(this,new String[] { "工具1", "工具2",
33. "工具3", "工具4" }, new int[] { R.drawable.menu_copy,
34. R.drawable.menu_cut, R.drawable.menu_normalmode,
35. R.drawable.menu_quit },13, 0xFFFFFFFF);
36.
37.
38. tabMenu=new TabMenu(this,
39. new TitleClickEvent(),
40. new BodyClickEvent(),
41. titleAdapter,
42. 0x55123456,//TabMenu的背景颜色
43. R.style.PopupAnimation);//出现与消失的动画
44.
45. tabMenu.update();
46. tabMenu.SetTitleSelect(0);
47. tabMenu.SetBodyAdapter(bodyAdapter[0]);
48. }
49.
50. class TitleClickEvent implements OnItemClickListener{
51. @Override
52. public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
53. long arg3) {
54. selTitle=arg2;
55. tabMenu.SetTitleSelect(arg2);
56. tabMenu.SetBodyAdapter(bodyAdapter[arg2]);
57. }
58. }
59.
60. class BodyClickEvent implements OnItemClickListener{
61. @Override
62. public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
63. long arg3) {
64. tabMenu.SetBodySelect(arg2,Color.GRAY);
65. String str="第"+String.valueOf(selTitle)+"栏\n\r"
66. +"第"+String.valueOf(arg2)+"项";
67. Toast.makeText(testTabMenu.this, str, 500).show();
68.
69. }
70.
71. }
72. @Override
73. /**
74. * 创建MENU
75. */
76. public boolean onCreateOptionsMenu(Menu menu) {
77. menu.add("menu");// 必须创建一项
78. return super.onCreateOptionsMenu(menu);
79. }
80. @Override
81. /**
82. * 拦截MENU
83. */
84. public boolean onMenuOpened(int featureId, Menu menu) {
85. if (tabMenu != null) {
86. if (tabMenu.isShowing())
87. tabMenu.dismiss();
88. else {
89. tabMenu.showAtLocation(findViewById(R.id.LinearLayout01),
90. Gravity.BOTTOM, 0, 0);
91. }
92. }
93. return false;// 返回为true 则显示系统menu
94. }
95.
96.}
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/hellogv/archive/2011/01/28/6168439.aspx
相关推荐
在Android应用开发中,Tab Menu是一种常见的用户界面元素,它允许用户在多个视图之间轻松切换。本教程将深入探讨如何在Android中实现一个带有动画效果的Tab Menu,以提升用户体验并增加应用的视觉吸引力。 首先,...
本教程将详细介绍如何在Android项目中实现底部tab栏与标题栏的结合。 首先,我们需要在布局XML文件中创建底部导航栏。这可以通过添加`BottomNavigationView`组件来完成。例如: ```xml <com.google.android....
本篇文章将深入探讨如何在Android中实现一个自定义菜单,包括带有图标的Tab-Menu,并支持分页功能。 首先,我们从“自定义菜单”的概念入手。在Android系统中,菜单通常用于在特定时刻显示一组操作选项,如在应用...
本篇文章将深入探讨如何在Android中实现底部导航条的中间凸起效果,该效果常见于签到、发布等特殊场景,用于吸引用户的注意力。 首先,我们需要了解Android的底部导航条组件。在Android SDK中,谷歌提供了`Bottom...
在Android的应用中,经常会见到底部菜单.而在企业级的Android应用中,也存在同样的需求,但与微信这些大众软件的区别在于企业级的Android应用由于UI页面很多,每个页面都需要有底部菜单,而且每个页面的底部菜单按钮...
1. **自定义布局**:首先,你需要创建一个自定义的布局文件,包含多个`<androidx.appcompat.widget.Toolbar>`或`<androidx.constraintlayout.widget.ConstraintLayout>`等视图,每个视图代表一个菜单项。通过调整...
TabMenu的设计理念是通过可切换的标签页来组织和导航应用的不同部分,提高用户体验和交互效率。在这个"TabMenu使用"的示例中,我们将深入探讨如何实现一个支持分页的TabMenu,并参考提供的资源——一个名为...
1. **Android布局设计**:首先,我们需要设计一个自定义的布局文件,这个布局将作为TabMenu的基础。通常,我们会使用`LinearLayout`或`RelativeLayout`来构建菜单项,并通过`TextView`或自定义的`ImageView`来展示每...
综上所述,实现Android应用中的底部tab中间凸起按钮效果,需要结合自定义布局、监听器、动画和Material Design库等技术。通过精心设计和不断优化,我们可以创建出既美观又实用的底部导航栏,为用户提供直观、易用的...
5. **自定义Tab样式**:如果想要进一步模仿微信的Tab样式,可以自定义BottomNavigationView的外观,例如改变字体颜色、背景色、选中状态的动画等。这可以通过设置主题或者直接修改BottomNavigationView的属性来完成...
`Android UI开发详解之ActionBar.docx`和`Android Action Bar 详解篇.docx`这两份文档应该深入探讨了如何创建和自定义Action Bar,包括添加自定义按钮、使用Action Items、设置Logo以及使用Overflow Menu等。...
在实际项目中,还可以根据需求进行更丰富的定制,比如自定义Tab样式、添加动画效果等。记住,良好的用户体验是应用成功的关键,因此在设计时要兼顾美观和实用性。对于初学者来说,可以参考给出的教程链接深入学习,...
"安卓底部自定义tab切换"是一个针对这个需求的源码实现,旨在提供一种简单易用的方法,特别适合初学者理解和实践。下面将详细介绍这个主题的相关知识点。 1. **BottomNavigationView**:这是安卓官方支持库中提供的...
本篇文章将详细介绍如何自定义实现底部导航栏,并特别关注中间凸起的设计效果。 首先,我们需要理解Android的底部导航栏的基本结构。通常,它由一个`BottomNavigationView`组件来实现,该组件是Android Support ...
这种设计模式遵循Material Design指南,为用户提供清晰的导航结构,提高了用户体验。本篇文章将深入探讨如何实现底部导航栏的最佳实践。 ### 1. 设计原则 - **清晰性**:底部导航栏应展示应用程序的主要功能,通常...
`Menu` 的使用能够提高用户界面的交互性和功能的易用性。在这个“安卓menu代码(仿QQtab优化界面)”项目中,我们将探讨如何利用 `Menu` 创建类似QQ应用的底部导航栏,以实现更加优雅且高效的用户界面。 首先,我们...