forked from ym6745476/andbase
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
在AbActivity增加副操作栏的支持(完善中) 主操作栏增加下拉菜单的支持
- Loading branch information
zhaoqp2010
committed
Nov 21, 2013
1 parent
e502109
commit 297cffe
Showing
280 changed files
with
1,783 additions
and
1,591 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AndBase/bin/classes/com/ab/activity/AbActivity$Method.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+105 Bytes
(100%)
AndBase/bin/classes/com/ab/http/AbFileHttpResponseListener.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AndBase/bin/classes/com/ab/http/AbHttpClient$ResponderHandler.class
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AndBase/bin/classes/com/ab/util/AbFileUtil$FileLastModifSort.class
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AndBase/bin/classes/com/ab/view/titlebar/AbTitleBar$1.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
/* | ||
* Copyright (C) 2013 www.418log.org | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.ab.global; | ||
|
||
// TODO: Auto-generated Javadoc | ||
/** | ||
* 描述:菜单对象. | ||
* | ||
* @author zhaoqp | ||
* @date:2013-11-21 下午1:30:54 | ||
* @version v1.0 | ||
*/ | ||
public class AbMenuItem { | ||
|
||
/** 菜单的id. */ | ||
private int iconId; | ||
|
||
/** 菜单的文本. */ | ||
private String text; | ||
|
||
|
||
/** | ||
* Instantiates a new ab menu item. | ||
* | ||
* @param iconId the icon id | ||
* @param text the text | ||
*/ | ||
public AbMenuItem(int iconId, String text) { | ||
super(); | ||
this.iconId = iconId; | ||
this.text = text; | ||
} | ||
|
||
/** | ||
* Instantiates a new ab menu item. | ||
* | ||
* @param text the text | ||
*/ | ||
public AbMenuItem(String text) { | ||
super(); | ||
this.text = text; | ||
} | ||
|
||
/** | ||
* Instantiates a new ab menu item. | ||
* | ||
*/ | ||
public AbMenuItem() { | ||
super(); | ||
} | ||
|
||
/** | ||
* Gets the icon id. | ||
* | ||
* @return the icon id | ||
*/ | ||
public int getIconId() { | ||
return iconId; | ||
} | ||
|
||
/** | ||
* Sets the icon id. | ||
* | ||
* @param iconId the new icon id | ||
*/ | ||
public void setIconId(int iconId) { | ||
this.iconId = iconId; | ||
} | ||
|
||
/** | ||
* Gets the text. | ||
* | ||
* @return the text | ||
*/ | ||
public String getText() { | ||
return text; | ||
} | ||
|
||
/** | ||
* Sets the text. | ||
* | ||
* @param text the new text | ||
*/ | ||
public void setText(String text) { | ||
this.text = text; | ||
} | ||
|
||
} |
Oops, something went wrong.