cocos2dx面试题整理大神为什么我继承,public EditBoxDelegate报错

>> Cocos2dxEditBoxDialog.java
Cocos2dxEditBoxDialog.java ( 文件浏览 )
/****************************************************************************
Copyright (c)
cocos2d-x.org
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the &Software&), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED &AS IS&, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
package org.cocos2dx.
import android.app.D
import android.content.C
import android.graphics.drawable.ColorD
import android.os.B
import android.os.H
import android.text.InputF
import android.text.InputT
import android.util.TypedV
import android.view.KeyE
import android.view.ViewG
import android.view.WindowM
import android.view.inputmethod.EditorI
import android.view.inputmethod.InputMethodM
import android.widget.EditT
import android.widget.LinearL
import android.widget.TextV
import android.widget.TextView.OnEditorActionL
public class Cocos2dxEditBoxDialog extends Dialog {
// ===========================================================
// Constants
// ===========================================================
* The user is allowed to enter any text, including line breaks.
private final int kEditBoxInputModeAny = 0;
* The user is allowed to enter an e-mail address.
private final int kEditBoxInputModeEmailAddr = 1;
* The user is allowed to enter an integer value.
private final int kEditBoxInputModeNumeric = 2;
* The user is allowed to enter a phone number.
private final int kEditBoxInputModePhoneNumber = 3;
* The user is allowed to enter a URL.
private final int kEditBoxInputModeUrl = 4;
* The user is allowed to enter a real number value. This extends kEditBoxInputModeNumeric by allowing a decimal point.
private final int kEditBoxInputModeDecimal = 5;
* The user is allowed to enter any text, except for line breaks.
private final int kEditBoxInputModeSingleLine = 6;
* Indicates that the text entered is confidential data that should be obscured whenever possible. This implies EDIT_BOX_INPUT_FLAG_SENSITIVE.
private final int kEditBoxInputFlagPassword = 0;
* Indicates that the text entered is sensitive data that the implementation must never store into a dictionary or table for use in predictive, auto-completing, or other accelerated input schemes. A credit card number is an example of sensitive data.
private final int kEditBoxInputFlagSensitive = 1;
* This flag is a hint to the implementation that during text editing, the initial letter of each word should be capitalized.
private final int kEditBoxInputFlagInitialCapsWord = 2;
* This flag is a hint to the implementation that during text editing, the initial letter of each sentence should be capitalized.
private final int kEditBoxInputFlagInitialCapsSentence = 3;
* Capitalize all characters automatically.
private final int kEditBoxInputFlagInitialCapsAllCharacters = 4;
private final int kKeyboardReturnTypeDefault = 0;
private final int kKeyboardReturnTypeDone = 1;
private final int kKeyboardReturnTypeSend = 2;
private final int kKeyboardReturnTypeSearch = 3;
private final int kKeyboardReturnTypeGo = 4;
// ===========================================================
// ===========================================================
private EditText mInputEditT
private TextView mTextViewT
private final String mT
private final String mM
private final int mInputM
private final int mInputF
private final int mReturnT
private final int mMaxL
private int mInputFlagC
private int mInputModeC
private boolean mIsM
// ===========================================================
// Constructors
// ===========================================================
public Cocos2dxEditBoxDialog(final Context pContext, final String pTitle, final String pMessage, final int pInputMode, final int pInputFlag, final int pReturnType, final int pMaxLength) {
super(pContext, android.R.style.Theme_Translucent_NoTitleBar_Fullscreen);
super(context, R.style.Theme_Translucent);
this.mTitle = pT
this.mMessage = pM
this.mInputMode = pInputM
this.mInputFlag = pInputF
this.mReturnType = pReturnT
this.mMaxLength = pMaxL
protected void onCreate(final Bundle pSavedInstanceState) {
super.onCreate(pSavedInstanceState);
this.getWindow().setBackgroundDrawable(new ColorDrawable(0x));
final LinearLayout layout = new LinearLayout(this.getContext());
layout.setOrientation(LinearLayout.VERTICAL);
final LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.FILL_PARENT);
this.mTextViewTitle = new TextView(this.getContext());
final LinearLayout.LayoutParams textviewParams = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
textviewParams.leftMargin = textviewParams.rightMargin = this.convertDipsToPixels(10);
this.mTextViewTitle.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 20);
layout.addView(this.mTextViewTitle, textviewParams);
this.mInputEditText = new EditText(this.getContext());
final LinearLayout.LayoutParams editTextParams = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
editTextParams.leftMargin = editTextParams.rightMargin = this.convertDipsToPixels(10);
layout.addView(this.mInputEditText, editTextParams);
this.setContentView(layout, layoutParams);
this.getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
this.mTextViewTitle.setText(this.mTitle);
this.mInputEditText.setText(this.mMessage);
int oldImeOptions = this.mInputEditText.getImeOptions();
this.mInputEditText.setImeOptions(oldImeOptions | EditorInfo.IME_FLAG_NO_EXTRACT_UI);
oldImeOptions = this.mInputEditText.getImeOptions();
switch (this.mInputMode) {
case kEditBoxInputModeAny:
this.mInputModeContraints = InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_MULTI_LINE;
case kEditBoxInputModeEmailAddr:
this.mInputModeContraints = InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS;
case kEditBoxInputModeNumeric:
this.mInputModeContraints = InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_FLAG_SIGNED;
case kEditBoxInputModePhoneNumber:
this.mInputModeContraints = InputType.TYPE_CLASS_PHONE;
case kEditBoxInputModeUrl:
this.mInputModeContraints = InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_URI;
case kEditBoxInputModeDecimal:
this.mInputModeContraints = InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_FLAG_DECIMAL | InputType.TYPE_NUMBER_FLAG_SIGNED;
case kEditBoxInputModeSingleLine:
this.mInputModeContraints = InputType.TYPE_CLASS_TEXT;
if (this.mIsMultiline) {
this.mInputModeContraints |= InputType.TYPE_TEXT_FLAG_MULTI_LINE;
this.mInputEditText.setInputType(this.mInputModeContraints | this.mInputFlagConstraints);
switch (this.mInputFlag) {
case kEditBoxInputFlagPassword:
this.mInputFlagConstraints = InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD;
case kEditBoxInputFlagSensitive:
this.mInputFlagConstraints = InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS;
case kEditBoxInputFlagInitialCapsWord:
this.mInputFlagConstraints = InputType.TYPE_TEXT_FLAG_CAP_WORDS;
case kEditBoxInputFlagInitialCapsSentence:
this.mInputFlagConstraints = InputType.TYPE_TEXT_FLAG_CAP_SENTENCES;
case kEditBoxInputFlagInitialCapsAllCharacters:
this.mInputFlagConstraints = InputType.TYPE_TEXT_FLAG_CAP_CHARACTERS;
this.mInputEditText.setInputType(this.mInputFlagConstraints | this.mInputModeContraints);
switch (this.mReturnType) {
case kKeyboardReturnTypeDefault:
this.mInputEditText.setImeOptions(oldImeOptions | EditorInfo.IME_ACTION_NONE);
case kKeyboardReturnTypeDone:
this.mInputEditText.setImeOptions(oldImeOptions | EditorInfo.IME_ACTION_DONE);
case kKeyboardReturnTypeSend:
this.mInputEditText.setImeOptions(oldImeOptions | EditorInfo.IME_ACTION_SEND);
case kKeyboardReturnTypeSearch:
this.mInputEditText.setImeOptions(oldImeOptions | EditorInfo.IME_ACTION_SEARCH);
case kKeyboardReturnTypeGo:
this.mInputEditText.setImeOptions(oldImeOptions | EditorInfo.IME_ACTION_GO);
this.mInputEditText.setImeOptions(oldImeOptions | EditorInfo.IME_ACTION_NONE);
if (this.mMaxLength & 0) {
this.mInputEditText.setFilters(new InputFilter[] {
new InputFilter.LengthFilter(this.mMaxLength)
final Handler initHandler = new Handler();
initHandler.postDelayed(new Runnable() {
public void run() {
Cocos2dxEditBoxDialog.this.mInputEditText.requestFocus();
Cocos2dxEditBoxDialog.this.mInputEditText.setSelection(Cocos2dxEditBoxDialog.this.mInputEdit
(文件超长,未完全显示,请下载后阅读剩余部分)
展开> <收缩
下载源码到电脑,阅读使用更方便
还剩0行未阅读,继续阅读 ▼
Sponsored links
源码文件列表
温馨提示: 点击源码文件名可预览文件内容哦 ^_^
1.28 kB14-11-13 23:29
961.00 B14-11-13 23:29
2.39 kB14-11-13 23:48
2.38 kB14-11-13 23:29
599.00 B14-11-13 23:29
.classpath475.00 B14-11-13 23:49
.project814.00 B14-11-13 23:29
org.eclipse.jdt.core.prefs177.00 B14-11-13 23:49
1.12 kB14-11-13 23:53
ant.properties698.00 B14-11-13 23:28
CloseNormal.png6.67 kB14-11-13 23:48
CloseSelected.png5.58 kB14-11-13 23:48
HelloWorld.png156.37 kB14-11-13 23:48
AndroidDemo.apk1.45 MB14-11-13 23:53
1.12 kB14-11-13 23:53
AndroidDemo.class625.00 B14-11-13 23:52
BuildConfig.class345.00 B14-11-13 23:49
R$attr.class340.00 B14-11-13 23:53
R$drawable.class407.00 B14-11-13 23:53
R$string.class398.00 B14-11-13 23:53
R.class439.00 B14-11-13 23:53
Cocos2dxAccelerometer.class2.96 kB14-11-13 23:52
Cocos2dxActivity.class3.75 kB14-11-13 23:52
Cocos2dxBitmap$TextProperty.class1.04 kB14-11-13 23:52
Cocos2dxBitmap.class10.36 kB14-11-13 23:52
Cocos2dxEditBoxDialog$1.class963.00 B14-11-13 23:52
Cocos2dxEditBoxDialog$2.class1.45 kB14-11-13 23:52
Cocos2dxEditBoxDialog.class6.48 kB14-11-13 23:52
Cocos2dxEditText.class1.31 kB14-11-13 23:52
Cocos2dxGLSurfaceView$1.class2.29 kB14-11-13 23:52
Cocos2dxGLSurfaceView$10.class1,020.00 B14-11-13 23:52
Cocos2dxGLSurfaceView$11.class926.00 B14-11-13 23:52
Cocos2dxGLSurfaceView$12.class948.00 B14-11-13 23:52
Cocos2dxGLSurfaceView$13.class854.00 B14-11-13 23:52
Cocos2dxGLSurfaceView$2.class794.00 B14-11-13 23:52
Cocos2dxGLSurfaceView$3.class840.00 B14-11-13 23:52
Cocos2dxGLSurfaceView$4.class838.00 B14-11-13 23:52
Cocos2dxGLSurfaceView$5.class1.01 kB14-11-13 23:52
Cocos2dxGLSurfaceView$6.class1,017.00 B14-11-13 23:52
Cocos2dxGLSurfaceView$7.class1,016.00 B14-11-13 23:52
Cocos2dxGLSurfaceView$8.class1.01 kB14-11-13 23:52
Cocos2dxGLSurfaceView$9.class1,009.00 B14-11-13 23:52
Cocos2dxGLSurfaceView.class8.04 kB14-11-13 23:52
Cocos2dxHandler$1.class864.00 B14-11-13 23:52
Cocos2dxHandler$DialogMessage.class585.00 B14-11-13 23:52
Cocos2dxHandler$EditBoxMessage.class787.00 B14-11-13 23:52
Cocos2dxHandler.class2.81 kB14-11-13 23:52
Cocos2dxHelper$1.class633.00 B14-11-13 23:52
Cocos2dxHelper$Cocos2dxHelperListener.class430.00 B14-11-13 23:52
Cocos2dxHelper.class6.71 kB14-11-13 23:52
Cocos2dxLocalStorage$DBOpenHelper.class1.70 kB14-11-13 23:52
Cocos2dxLocalStorage.class3.16 kB14-11-13 23:52
Cocos2dxMusic.class4.49 kB14-11-13 23:52
Cocos2dxRenderer.class3.27 kB14-11-13 23:52
Cocos2dxSound$OnLoadCompletedListener.class1.87 kB14-11-13 23:52
Cocos2dxSound$SoundInfoForLoadedCompleted.class757.00 B14-11-13 23:52
Cocos2dxSound.class8.05 kB14-11-13 23:52
Cocos2dxTextInputWraper.class3.33 kB14-11-13 23:52
Cocos2dxTypefaces.class1.28 kB14-11-13 23:52
classes.dex51.59 kB14-11-13 23:53
ic_launcher.png8.98 kB14-11-13 23:53
ic_launcher.png2.60 kB14-11-13 23:53
ic_launcher.png4.94 kB14-11-13 23:53
ic_launcher.png13.74 kB14-11-13 23:53
resources.ap_201.82 kB14-11-13 23:53
3.92 kB14-11-13 23:28
1.91 kB14-11-13 23:29
160.00 B14-11-13 23:49
499.00 B14-11-13 23:53
Android.mk597.00 B14-11-13 23:29
Application.mk65.00 B14-11-13 23:29
1.11 kB14-11-13 23:29
362.00 B14-11-13 23:29
libgame.so2.80 MB14-11-13 23:49
local.properties419.00 B14-11-13 23:28
1.28 kB14-11-13 23:29
496.00 B14-11-13 23:34
libbox2d.a2.50 MB14-11-13 23:43
libchipmunk.a1.10 MB14-11-13 23:43
libcocos2d.a10.05 MB14-11-13 23:42
libcocosdenshion.a492.13 kB14-11-13 23:37
libextension.a4.66 MB14-11-13 23:38
libgame.so11.70 MB14-11-13 23:49
b2BroadPhase.o24.07 kB14-11-13 23:42
b2BroadPhase.o.d3.18 kB14-11-13 23:42
b2CollideCircle.o28.18 kB14-11-13 23:42
b2CollideCircle.o.d3.22 kB14-11-13 23:42
b2CollideEdge.o66.53 kB14-11-13 23:42
b2CollideEdge.o.d3.53 kB14-11-13 23:42
b2CollidePolygon.o37.54 kB14-11-13 23:42
b2CollidePolygon.o.d2.91 kB14-11-13 23:42
b2Collision.o40.60 kB14-11-13 23:42
b2Collision.o.d2.27 kB14-11-13 23:42
b2Distance.o55.82 kB14-11-13 23:42
b2Distance.o.d4.14 kB14-11-13 23:42
b2DynamicTree.o50.41 kB14-11-13 23:42
b2DynamicTree.o.d2.73 kB14-11-13 23:42
b2TimeOfImpact.o55.45 kB14-11-13 23:42
b2TimeOfImpact.o.d3.97 kB14-11-13 23:42
b2ChainShape.o34.11 kB14-11-13 23:42
b2ChainShape.o.d3.51 kB14-11-13 23:42
b2CircleShape.o33.73 kB14-11-13 23:42
b2CircleShape.o.d3.05 kB14-11-13 23:42
b2EdgeShape.o36.73 kB14-11-13 23:42
b2EdgeShape.o.d3.05 kB14-11-13 23:42
b2PolygonShape.o58.20 kB14-11-13 23:42
b2PolygonShape.o.d3.06 kB14-11-13 23:42
b2BlockAllocator.o16.29 kB14-11-13 23:42
b2BlockAllocator.o.d1.69 kB14-11-13 23:42
b2Draw.o13.61 kB14-11-13 23:42
b2Draw.o.d1.79 kB14-11-13 23:42
b2Math.o17.88 kB14-11-13 23:42
b2Math.o.d1.50 kB14-11-13 23:42
b2Settings.o10.72 kB14-11-13 23:42
b2Settings.o.d1.23 kB14-11-13 23:42
b2StackAllocator.o9.59 kB14-11-13 23:42
b2StackAllocator.o.d1.83 kB14-11-13 23:42
b2Timer.o7.57 kB14-11-13 23:42
b2Timer.o.d1.38 kB14-11-13 23:42
b2Body.o78.88 kB14-11-13 23:43
b2Body.o.d6.63 kB14-11-13 23:43
b2ContactManager.o102.73 kB14-11-13 23:43
b2ContactManager.o.d5.45 kB14-11-13 23:43
b2Fixture.o69.30 kB14-11-13 23:43
b2Fixture.o.d7.59 kB14-11-13 23:43
b2Island.o80.21 kB14-11-13 23:43
b2Island.o.d7.83 kB14-11-13 23:43
b2World.o152.39 kB14-11-13 23:43
b2World.o.d10.00 kB14-11-13 23:43
b2WorldCallbacks.o30.52 kB14-11-13 23:43
b2WorldCallbacks.o.d3.62 kB14-11-13 23:43
b2ChainAndCircleContact.o44.49 kB14-11-13 23:42
b2ChainAndCircleContact.o.d4.63 kB14-11-13 23:42
b2ChainAndPolygonContact.o44.54 kB14-11-13 23:42
b2ChainAndPolygonContact.o.d4.63 kB14-11-13 23:42
b2CircleContact.o42.39 kB14-11-13 23:42
b2CircleContact.o.d4.88 kB14-11-13 23:42
b2Contact.o64.65 kB14-11-13 23:42
b2Contact.o.d9.62 kB14-11-13 23:42
b2ContactSolver.o137.07 kB14-11-13 23:42
b2ContactSolver.o.d6.68 kB14-11-13 23:42
b2EdgeAndCircleContact.o40.44 kB14-11-13 23:42
b2EdgeAndCircleContact.o.d3.99 kB14-11-13 23:42
b2EdgeAndPolygonContact.o40.49 kB14-11-13 23:42
b2EdgeAndPolygonContact.o.d4.00 kB14-11-13 23:42
b2PolygonAndCircleContact.o40.59 kB14-11-13 23:42
b2PolygonAndCircleContact.o.d4.00 kB14-11-13 23:42
b2PolygonContact.o42.45 kB14-11-13 23:42
b2PolygonContact.o.d4.88 kB14-11-13 23:42
b2DistanceJoint.o73.20 kB14-11-13 23:42
b2DistanceJoint.o.d3.95 kB14-11-13 23:42
b2FrictionJoint.o67.93 kB14-11-13 23:42
b2FrictionJoint.o.d3.95 kB14-11-13 23:42
b2GearJoint.o85.08 kB14-11-13 23:42
b2GearJoint.o.d4.58 kB14-11-13 23:42
b2Joint.o54.97 kB14-11-13 23:42
b2Joint.o.d9.19 kB14-11-13 23:42
b2MouseJoint.o62.52 kB14-11-13 23:42
b2MouseJoint.o.d3.94 kB14-11-13 23:42
b2PrismaticJoint.o121.46 kB14-11-13 23:43
b2PrismaticJoint.o.d3.96 kB14-11-13 23:43
b2PulleyJoint.o79.11 kB14-11-13 23:43
b2PulleyJoint.o.d3.94 kB14-11-13 23:43
b2RevoluteJoint.o99.95 kB14-11-13 23:43
b2RevoluteJoint.o.d3.95 kB14-11-13 23:43
b2RopeJoint.o68.29 kB14-11-13 23:43
b2RopeJoint.o.d3.94 kB14-11-13 23:43
b2WeldJoint.o82.79 kB14-11-13 23:43
b2WeldJoint.o.d3.94 kB14-11-13 23:43
b2WheelJoint.o88.12 kB14-11-13 23:43
b2WheelJoint.o.d3.94 kB14-11-13 23:43
b2Rope.o38.13 kB14-11-13 23:43
b2Rope.o.d2.06 kB14-11-13 23:43
chipmunk.o38.29 kB14-11-13 23:43
chipmunk.o.d12.38 kB14-11-13 23:43
cpConstraint.o15.93 kB14-11-13 23:43
cpConstraint.o.d12.27 kB14-11-13 23:43
cpDampedRotarySpring.o23.80 kB14-11-13 23:43
cpDampedRotarySpring.o.d12.29 kB14-11-13 23:43
cpDampedSpring.o36.28 kB14-11-13 23:43
cpDampedSpring.o.d12.28 kB14-11-13 23:43
cpGearJoint.o26.97 kB14-11-13 23:43
cpGearJoint.o.d12.27 kB14-11-13 23:43
cpGrooveJoint.o52.88 kB14-11-13 23:43
cpGrooveJoint.o.d12.27 kB14-11-13 23:43
cpPinJoint.o40.20 kB14-11-13 23:43
cpPinJoint.o.d12.27 kB14-11-13 23:43
cpPivotJoint.o41.04 kB14-11-13 23:43
cpPivotJoint.o.d12.27 kB14-11-13 23:43
cpRatchetJoint.o26.98 kB14-11-13 23:43
cpRatchetJoint.o.d12.28 kB14-11-13 23:43
cpRotaryLimitJoint.o27.07 kB14-11-13 23:43
cpRotaryLimitJoint.o.d12.28 kB14-11-13 23:43
cpSimpleMotor.o23.64 kB14-11-13 23:43
cpSimpleMotor.o.d12.27 kB14-11-13 23:43
cpSlideJoint.o40.67 kB14-11-13 23:43
cpSlideJoint.o.d12.27 kB14-11-13 23:43
cpArbiter.o61.13 kB14-11-13 23:43
cpArbiter.o.d12.24 kB14-11-13 23:43
cpArray.o9.92 kB14-11-13 23:43
cpArray.o.d11.93 kB14-11-13 23:43
cpBB.o6.15 kB14-11-13 23:43
cpBB.o.d11.92 kB14-11-13 23:43
cpBBTree.o78.09 kB14-11-13 23:43
cpBBTree.o.d12.08 kB14-11-13 23:43
cpBody.o51.26 kB14-11-13 23:43
cpBody.o.d12.24 kB14-11-13 23:43
cpCollision.o67.67 kB14-11-13 23:43
cpCollision.o.d11.94 kB14-11-13 23:43
cpHashSet.o19.52 kB14-11-13 23:43
cpHashSet.o.d12.20 kB14-11-13 23:43
cpPolyShape.o54.86 kB14-11-13 23:43
cpPolyShape.o.d12.25 kB14-11-13 23:43
cpShape.o73.96 kB14-11-13 23:43
cpShape.o.d12.24 kB14-11-13 23:43
cpSpace.o64.47 kB14-11-13 23:43
cpSpace.o.d12.08 kB14-11-13 23:43
cpSpaceComponent.o45.50 kB14-11-13 23:43
cpSpaceComponent.o.d11.95 kB14-11-13 23:43
cpSpaceHash.o54.78 kB14-11-13 23:43
cpSpaceHash.o.d12.20 kB14-11-13 23:43
cpSpaceQuery.o45.75 kB14-11-13 23:43
cpSpaceQuery.o.d11.94 kB14-11-13 23:43
cpSpaceStep.o43.31 kB14-11-13 23:43
cpSpaceStep.o.d11.94 kB14-11-13 23:43
cpSpatialIndex.o12.25 kB14-11-13 23:43
cpSpatialIndex.o.d11.94 kB14-11-13 23:43
cpSweep1D.o27.27 kB14-11-13 23:43
cpSweep1D.o.d11.93 kB14-11-13 23:43
cpVect.o11.67 kB14-11-13 23:43
cpVect.o.d12.08 kB14-11-13 23:43
CCAction.o67.39 kB14-11-13 23:38
CCAction.o.d24.66 kB14-11-13 23:38
CCActionCamera.o46.19 kB14-11-13 23:38
CCActionCamera.o.d22.63 kB14-11-13 23:38
CCActionCatmullRom.o135.82 kB14-11-13 23:38
CCActionCatmullRom.o.d22.14 kB14-11-13 23:38
CCActionEase.o218.95 kB14-11-13 23:38
CCActionEase.o.d21.84 kB14-11-13 23:38
CCActionGrid.o101.06 kB14-11-13 23:38
CCActionGrid.o.d25.43 kB14-11-13 23:38
CCActionGrid3D.o127.68 kB14-11-13 23:38
CCActionGrid3D.o.d25.48 kB14-11-13 23:38
CCActionInstant.o129.61 kB14-11-13 23:38
CCActionInstant.o.d16.70 kB14-11-13 23:38
CCActionInterval.o389.58 kB14-11-13 23:38
CCActionInterval.o.d23.09 kB14-11-13 23:38
CCActionManager.o92.21 kB14-11-13 23:38
CCActionManager.o.d19.14 kB14-11-13 23:38
CCActionPageTurn3D.o35.88 kB14-11-13 23:38
CCActionPageTurn3D.o.d23.37 kB14-11-13 23:38
CCActionProgressTimer.o46.15 kB14-11-13 23:38
CCActionProgressTimer.o.d22.70 kB14-11-13 23:38
CCActionTiledGrid.o160.09 kB14-11-13 23:38
CCActionTiledGrid.o.d26.00 kB14-11-13 23:38
CCActionTween.o55.20 kB14-11-13 23:38
CCActionTween.o.d21.59 kB14-11-13 23:38
CCAtlasNode.o71.23 kB14-11-13 23:38
CCAtlasNode.o.d24.58 kB14-11-13 23:38
CCNode.o176.51 kB14-11-13 23:38
CCNode.o.d22.08 kB14-11-13 23:38
CCCamera.o38.79 kB14-11-13 23:38
CCCamera.o.d24.26 kB14-11-13 23:38
CCConfiguration.o43.73 kB14-11-13 23:38
CCConfiguration.o.d6.40 kB14-11-13 23:38
CCDirector.o141.29 kB14-11-13 23:38
CCDirector.o.d34.78 kB14-11-13 23:38
CCScheduler.o139.41 kB14-11-13 23:38
CCScheduler.o.d23.98 kB14-11-13 23:38
CCAffineTransform.o30.21 kB14-11-13 23:38
CCAffineTransform.o.d3.99 kB14-11-13 23:38
CCArray.o56.19 kB14-11-13 23:38
CCArray.o.d9.47 kB14-11-13 23:38
CCAutoreleasePool.o27.21 kB14-11-13 23:38
CCAutoreleasePool.o.d10.02 kB14-11-13 23:38
CCDictionary.o101.53 kB14-11-13 23:38
CCDictionary.o.d11.10 kB14-11-13 23:38
CCGeometry.o32.35 kB14-11-13 23:38
CCGeometry.o.d9.20 kB14-11-13 23:38
CCNS.o80.36 kB14-11-13 23:38
CCNS.o.d3.40 kB14-11-13 23:38
CCObject.o36.30 kB14-11-13 23:38
CCObject.o.d12.50 kB14-11-13 23:38
CCSet.o79.23 kB14-11-13 23:38
CCSet.o.d2.38 kB14-11-13 23:38
CCString.o66.50 kB14-11-13 23:38
CCString.o.d7.73 kB14-11-13 23:38
CCZone.o3.95 kB14-11-13 23:38
CCZone.o.d4.84 kB14-11-13 23:38
cocos2d.o53.83 kB14-11-13 23:38
cocos2d.o.d55.26 kB14-11-13 23:38
CCDrawingPrimitives.o55.68 kB14-11-13 23:38
CCDrawingPrimitives.o.d25.41 kB14-11-13 23:38
CCDrawNode.o76.57 kB14-11-13 23:38
CCDrawNode.o.d19.82 kB14-11-13 23:38
CCGrabber.o27.09 kB14-11-13 23:38
CCGrabber.o.d8.76 kB14-11-13 23:38
CCGrid.o87.36 kB14-11-13 23:39
CCGrid.o.d25.59 kB14-11-13 23:39
aabb.o6.21 kB14-11-13 23:39
aabb.o.d6.67 kB14-11-13 23:39
mat4stack.o7.35 kB14-11-13 23:39
mat4stack.o.d7.78 kB14-11-13 23:39
matrix.o16.20 kB14-11-13 23:39
matrix.o.d8.21 kB14-11-13 23:39
mat3.o27.64 kB14-11-13 23:39
mat3.o.d8.16 kB14-11-13 23:39
mat4.o45.41 kB14-11-13 23:39
mat4.o.d9.04 kB14-11-13 23:39
neon_matrix_impl.o908.00 B14-11-13 23:39
neon_matrix_impl.o.d532.00 B14-11-13 23:39
plane.o13.50 kB14-11-13 23:39
plane.o.d7.86 kB14-11-13 23:39
quaternion.o32.45 kB14-11-13 23:39
quaternion.o.d7.41 kB14-11-13 23:39
ray2.o13.20 kB14-11-13 23:39
ray2.o.d6.81 kB14-11-13 23:39
utility.o8.43 kB14-11-13 23:39
utility.o.d5.95 kB14-11-13 23:39
vec2.o14.85 kB14-11-13 23:39
vec2.o.d7.87 kB14-11-13 23:39
vec3.o23.34 kB14-11-13 23:39
vec3.o.d7.39 kB14-11-13 23:39
vec4.o18.91 kB14-11-13 23:39
vec4.o.d7.11 kB14-11-13 23:39
CCKeypadDelegate.o15.48 kB14-11-13 23:39
CCKeypadDelegate.o.d9.27 kB14-11-13 23:39
CCKeypadDispatcher.o19.00 kB14-11-13 23:39
CCKeypadDispatcher.o.d10.11 kB14-11-13 23:39
CCLabelAtlas.o73.97 kB14-11-13 23:39
CCLabelAtlas.o.d26.10 kB14-11-13 23:39
CCLabelBMFont.o293.57 kB14-11-13 23:39
CCLabelBMFont.o.d26.05 kB14-11-13 23:39
CCLabelTTF.o96.94 kB14-11-13 23:39
CCLabelTTF.o.d23.74 kB14-11-13 23:39
CCLayer.o202.25 kB14-11-13 23:39
CCLayer.o.d26.46 kB14-11-13 23:39
CCScene.o33.64 kB14-11-13 23:39
CCScene.o.d23.23 kB14-11-13 23:39
CCTransition.o304.46 kB14-11-13 23:39
CCTransition.o.d29.30 kB14-11-13 23:39
CCTransitionPageTurn.o41.32 kB14-11-13 23:39
CCTransitionPageTurn.o.d27.06 kB14-11-13 23:39
CCTransitionProgress.o94.54 kB14-11-13 23:39
CCTransitionProgress.o.d27.46 kB14-11-13 23:39
CCMenu.o170.73 kB14-11-13 23:39
CCMenu.o.d25.91 kB14-11-13 23:39
CCMenuItem.o219.11 kB14-11-13 23:39
CCMenuItem.o.d23.64 kB14-11-13 23:39
CCClippingNode.o55.92 kB14-11-13 23:39
CCClippingNode.o.d24.62 kB14-11-13 23:39
CCMotionStreak.o77.30 kB14-11-13 23:39
CCMotionStreak.o.d17.55 kB14-11-13 23:39
CCProgressTimer.o82.88 kB14-11-13 23:39
CCProgressTimer.o.d25.43 kB14-11-13 23:39
CCRenderTexture.o107.12 kB14-11-13 23:39
CCRenderTexture.o.d22.96 kB14-11-13 23:39
CCParticleBatchNode.o86.60 kB14-11-13 23:39
CCParticleBatchNode.o.d26.91 kB14-11-13 23:39
CCParticleExamples.o150.45 kB14-11-13 23:39
CCParticleExamples.o.d20.99 kB14-11-13 23:39
CCParticleSystem.o211.92 kB14-11-13 23:39
CCParticleSystem.o.d22.16 kB14-11-13 23:39
CCParticleSystemQuad.o80.45 kB14-11-13 23:39
CCParticleSystemQuad.o.d22.17 kB14-11-13 23:39
CCAccelerometer.o16.89 kB14-11-13 23:39
CCAccelerometer.o.d3.37 kB14-11-13 23:39
CCApplication.o90.02 kB14-11-13 23:39
CCApplication.o.d20.34 kB14-11-13 23:39
CCCommon.o13.78 kB14-11-13 23:41
CCCommon.o.d2.66 kB14-11-13 23:41
CCEGLView.o35.58 kB14-11-13 23:39
CCEGLView.o.d24.68 kB14-11-13 23:39
CCFileUtils.o403.90 kB14-11-13 23:41
CCFileUtils.o.d28.23 kB14-11-13 23:41
CCImage.o168.92 kB14-11-13 23:41
CCImage.o.d16.09 kB14-11-13 23:41
IMEJni.o66.21 kB14-11-13 23:41
IMEJni.o.d4.21 kB14-11-13 23:41
Java_org_cocos2dx_lib_Cocos2dxAccelerometer.o70.59 kB14-11-13 23:41
Java_org_cocos2dx_lib_Cocos2dxAccelerometer.o.d20.12 kB14-11-13 23:41
Java_org_cocos2dx_lib_Cocos2dxBitmap.o96.82 kB14-11-13 23:41
Java_org_cocos2dx_lib_Cocos2dxBitmap.o.d20.32 kB14-11-13 23:41
Java_org_cocos2dx_lib_Cocos2dxHelper.o102.13 kB14-11-13 23:41
Java_org_cocos2dx_lib_Cocos2dxHelper.o.d6.77 kB14-11-13 23:41
Java_org_cocos2dx_lib_Cocos2dxRenderer.o79.94 kB14-11-13 23:41
Java_org_cocos2dx_lib_Cocos2dxRenderer.o.d25.25 kB14-11-13 23:41
JniHelper.o94.93 kB14-11-13 23:41
JniHelper.o.d2.84 kB14-11-13 23:41
TouchesJni.o81.89 kB14-11-13 23:41
TouchesJni.o.d24.55 kB14-11-13 23:41
CCEGLViewProtocol.o72.07 kB14-11-13 23:39
CCEGLViewProtocol.o.d23.77 kB14-11-13 23:39
CCSAXParser.o39.59 kB14-11-13 23:39
CCSAXParser.o.d21.26 kB14-11-13 23:39
CCThread.o4.39 kB14-11-13 23:39
CCThread.o.d2.27 kB14-11-13 23:39
platform.o6.85 kB14-11-13 23:39
platform.o.d8.69 kB14-11-13 23:39
CCScriptSupport.o47.67 kB14-11-13 23:41
CCScriptSupport.o.d6.72 kB14-11-13 23:41
CCGLProgram.o94.65 kB14-11-13 23:41
CCGLProgram.o.d24.71 kB14-11-13 23:41
ccGLStateCache.o40.09 kB14-11-13 23:41
ccGLStateCache.o.d24.04 kB14-11-13 23:41
CCShaderCache.o51.78 kB14-11-13 23:41
CCShaderCache.o.d12.58 kB14-11-13 23:41
ccShaders.o13.65 kB14-11-13 23:41
ccShaders.o.d8.87 kB14-11-13 23:41
CCAnimation.o67.86 kB14-11-13 23:41
CCAnimation.o.d21.43 kB14-11-13 23:41
CCAnimationCache.o73.26 kB14-11-13 23:41
CCAnimationCache.o.d22.31 kB14-11-13 23:41
CCSprite.o153.37 kB14-11-13 23:41
CCSprite.o.d27.91 kB14-11-13 23:41
CCSpriteBatchNode.o107.34 kB14-11-13 23:41
CCSpriteBatchNode.o.d27.01 kB14-11-13 23:41
CCSpriteFrame.o72.88 kB14-11-13 23:41
CCSpriteFrame.o.d23.44 kB14-11-13 23:41
CCSpriteFrameCache.o138.42 kB14-11-13 23:41
CCSpriteFrameCache.o.d23.36 kB14-11-13 23:41
base64.o8.19 kB14-11-13 23:41
base64.o.d3.96 kB14-11-13 23:41
CCNotificationCenter.o68.29 kB14-11-13 23:41
CCNotificationCenter.o.d12.54 kB14-11-13 23:41
CCPointExtension.o34.63 kB14-11-13 23:41
CCPointExtension.o.d9.49 kB14-11-13 23:41
CCProfiling.o57.89 kB14-11-13 23:41
CCProfiling.o.d11.90 kB14-11-13 23:41
CCUserDefault.o77.47 kB14-11-13 23:41
CCUserDefault.o.d13.45 kB14-11-13 23:41
ccUtils.o3.32 kB14-11-13 23:41
ccUtils.o.d458.00 B14-11-13 23:41
CCVertex.o21.22 kB14-11-13 23:41
CCVertex.o.d10.93 kB14-11-13 23:41
ccCArray.o53.39 kB14-11-13 23:41
ccCArray.o.d9.25 kB14-11-13 23:41
TGAlib.o29.16 kB14-11-13 23:41
TGAlib.o.d8.38 kB14-11-13 23:41
TransformUtils.o9.75 kB14-11-13 23:41
TransformUtils.o.d4.72 kB14-11-13 23:41
ioapi.o26.59 kB14-11-13 23:42
ioapi.o.d4.57 kB14-11-13 23:42
unzip.o87.31 kB14-11-13 23:42
unzip.o.d5.67 kB14-11-13 23:42
ZipUtils.o128.58 kB14-11-13 23:41
ZipUtils.o.d10.73 kB14-11-13 23:41
CCTexture2D.o86.19 kB14-11-13 23:42
CCTexture2D.o.d20.15 kB14-11-13 23:42
CCTextureAtlas.o70.79 kB14-11-13 23:42
CCTextureAtlas.o.d11.52 kB14-11-13 23:42
CCTextureCache.o277.07 kB14-11-13 23:42
CCTextureCache.o.d26.95 kB14-11-13 23:42
CCTexturePVR.o69.21 kB14-11-13 23:42
CCTexturePVR.o.d9.20 kB14-11-13 23:42
CCIMEDispatcher.o67.84 kB14-11-13 23:42
CCIMEDispatcher.o.d3.01 kB14-11-13 23:42
CCTextFieldTTF.o109.78 kB14-11-13 23:42
CCTextFieldTTF.o.d24.35 kB14-11-13 23:42
CCParallaxNode.o58.23 kB14-11-13 23:42
CCParallaxNode.o.d18.14 kB14-11-13 23:42
CCTileMapAtlas.o82.64 kB14-11-13 23:42
CCTileMapAtlas.o.d24.72 kB14-11-13 23:42
CCTMXLayer.o129.63 kB14-11-13 23:42
CCTMXLayer.o.d21.42 kB14-11-13 23:42
CCTMXObjectGroup.o49.52 kB14-11-13 23:42
CCTMXObjectGroup.o.d7.12 kB14-11-13 23:42
CCTMXTiledMap.o84.37 kB14-11-13 23:42
CCTMXTiledMap.o.d23.20 kB14-11-13 23:42
CCTMXXMLParser.o187.62 kB14-11-13 23:42
CCTMXXMLParser.o.d22.64 kB14-11-13 23:42
CCTouch.o27.02 kB14-11-13 23:42
CCTouch.o.d23.17 kB14-11-13 23:42
CCTouchDispatcher.o127.14 kB14-11-13 23:42
CCTouchDispatcher.o.d13.35 kB14-11-13 23:42
CCTouchHandler.o37.51 kB14-11-13 23:42
CCTouchHandler.o.d11.05 kB14-11-13 23:42
SimpleAudioEngineJni.o90.74 kB14-11-13 23:36
SimpleAudioEngineJni.o.d3.48 kB14-11-13 23:36
OpenSLEngine.o220.17 kB14-11-13 23:37
OpenSLEngine.o.d8.46 kB14-11-13 23:37
SimpleAudioEngineOpenSL.o32.69 kB14-11-13 23:37
SimpleAudioEngineOpenSL.o.d8.80 kB14-11-13 23:37
SimpleAudioEngine.o142.06 kB14-11-13 23:36
SimpleAudioEngine.o.d66.94 kB14-11-13 23:36
CCBAnimationManager.o218.51 kB14-11-13 23:37
CCBAnimationManager.o.d57.55 kB14-11-13 23:37
CCBFileLoader.o68.54 kB14-11-13 23:37
CCBFileLoader.o.d56.98 kB14-11-13 23:37
CCBKeyframe.o65.56 kB14-11-13 23:37
CCBKeyframe.o.d55.83 kB14-11-13 23:37
CCBReader.o285.15 kB14-11-13 23:37
CCBReader.o.d59.42 kB14-11-13 23:37
CCBSequence.o66.67 kB14-11-13 23:37
CCBSequence.o.d50.98 kB14-11-13 23:37
CCBSequenceProperty.o65.22 kB14-11-13 23:37
CCBSequenceProperty.o.d56.14 kB14-11-13 23:37
CCBValue.o77.88 kB14-11-13 23:37
CCBValue.o.d55.82 kB14-11-13 23:37
CCControlButtonLoader.o85.36 kB14-11-13 23:37
CCControlButtonLoader.o.d59.26 kB14-11-13 23:37
CCControlLoader.o70.13 kB14-11-13 23:37
CCControlLoader.o.d57.97 kB14-11-13 23:37
CCData.o60.54 kB14-11-13 23:37
CCData.o.d55.81 kB14-11-13 23:37
CCLabelBMFontLoader.o76.76 kB14-11-13 23:37
CCLabelBMFontLoader.o.d57.01 kB14-11-13 23:37
CCLabelTTFLoader.o83.79 kB14-11-13 23:37
CCLabelTTFLoader.o.d56.99 kB14-11-13 23:37
CCLayerColorLoader.o73.00 kB14-11-13 23:37
CCLayerColorLoader.o.d57.28 kB14-11-13 23:37
CCLayerGradientLoader.o75.50 kB14-11-13 23:37
CCLayerGradientLoader.o.d57.29 kB14-11-13 23:37
CCLayerLoader.o69.13 kB14-11-13 23:37
CCLayerLoader.o.d56.98 kB14-11-13 23:37
CCMenuItemImageLoader.o72.04 kB14-11-13 23:37
CCMenuItemImageLoader.o.d57.58 kB14-11-13 23:37
CCMenuItemLoader.o69.99 kB14-11-13 23:37
CCMenuItemLoader.o.d57.27 kB14-11-13 23:37
CCNode+CCBRelativePositioning.o59.37 kB14-11-13 23:37
CCNode+CCBRelativePositioning.o.d56.17 kB14-11-13 23:37
CCNodeLoader.o234.59 kB14-11-13 23:37
CCNodeLoader.o.d59.00 kB14-11-13 23:37
CCNodeLoaderLibrary.o169.63 kB14-11-13 23:37
CCNodeLoaderLibrary.o.d63.92 kB14-11-13 23:37
CCParticleSystemQuadLoader.o85.22 kB14-11-13 23:37
CCParticleSystemQuadLoader.o.d57.03 kB14-11-13 23:37
CCScale9SpriteLoader.o79.96 kB14-11-13 23:37
CCScale9SpriteLoader.o.d57.34 kB14-11-13 23:37
CCScrollViewLoader.o79.45 kB14-11-13 23:37
CCScrollViewLoader.o.d57.32 kB14-11-13 23:37
CCSpriteLoader.o76.87 kB14-11-13 23:37
CCSpriteLoader.o.d56.99 kB14-11-13 23:37
CCControl.o114.86 kB14-11-13 23:37
CCControl.o.d56.48 kB14-11-13 23:37
CCControlButton.o177.34 kB14-11-13 23:37
CCControlButton.o.d57.11 kB14-11-13 23:37
CCControlColourPicker.o99.34 kB14-11-13 23:37
CCControlColourPicker.o.d57.49 kB14-11-13 23:37
CCControlHuePicker.o99.11 kB14-11-13 23:37
CCControlHuePicker.o.d56.81 kB14-11-13 23:37
CCControlPotentiometer.o112.25 kB14-11-13 23:37
CCControlPotentiometer.o.d56.83 kB14-11-13 23:37
CCControlSaturationBrightnessPicker.o102.86 kB14-11-13 23:37
CCControlSaturationBrightnessPicker.o.d56.88 kB14-11-13 23:37
CCControlSlider.o118.89 kB14-11-13 23:37
CCControlSlider.o.d56.80 kB14-11-13 23:37
CCControlStepper.o114.20 kB14-11-13 23:37
CCControlStepper.o.d56.81 kB14-11-13 23:37
CCControlSwitch.o157.97 kB14-11-13 23:37
CCControlSwitch.o.d56.80 kB14-11-13 23:37
CCControlUtils.o32.14 kB14-11-13 23:37
CCControlUtils.o.d21.23 kB14-11-13 23:37
CCInvocation.o15.02 kB14-11-13 23:37
CCInvocation.o.d2.61 kB14-11-13 23:37
CCScale9Sprite.o149.19 kB14-11-13 23:37
CCScale9Sprite.o.d55.89 kB14-11-13 23:37
CCEditBox.o143.44 kB14-11-13 23:38
CCEditBox.o.d60.51 kB14-11-13 23:38
CCEditBoxImplAndroid.o93.46 kB14-11-13 23:38
CCEditBoxImplAndroid.o.d61.52 kB14-11-13 23:38
CCScrollView.o112.04 kB14-11-13 23:37
CCScrollView.o.d29.27 kB14-11-13 23:37
CCSorting.o29.38 kB14-11-13 23:38
CCSorting.o.d10.05 kB14-11-13 23:38
CCTableView.o178.14 kB14-11-13 23:37
CCTableView.o.d56.73 kB14-11-13 23:37
CCTableViewCell.o39.33 kB14-11-13 23:37
CCTableViewCell.o.d18.40 kB14-11-13 23:38
LocalStorageAndroid.o114.61 kB14-11-13 23:38
LocalStorageAndroid.o.d55.75 kB14-11-13 23:38
HttpClient.o166.90 kB14-11-13 23:38
HttpClient.o.d61.10 kB14-11-13 23:38
CCPhysicsDebugNode.o52.95 kB14-11-13 23:38
CCPhysicsDebugNode.o.d55.88 kB14-11-13 23:38
CCPhysicsSprite.o84.07 kB14-11-13 23:38
CCPhysicsSprite.o.d55.86 kB14-11-13 23:38
main.o103.54 kB14-11-13 23:34
main.o.d51.67 kB14-11-13 23:34
AppDelegate.o61.36 kB14-11-13 23:34
AppDelegate.o.d55.61 kB14-11-13 23:34
HelloWorldScene.o73.72 kB14-11-13 23:49
HelloWorldScene.o.d55.87 kB14-11-13 23:49
801.00 B14-11-13 23:28
project.properties628.00 B14-11-13 23:49
ic_launcher.png9.18 kB14-11-13 23:28
ic_launcher.png2.67 kB14-11-13 23:28
ic_launcher.png5.11 kB14-11-13 23:28
ic_launcher.png14.05 kB14-11-13 23:28
117.00 B14-11-13 23:28
1.51 kB14-11-13 23:29
5.54 kB14-11-13 23:52
5.38 kB14-11-13 23:52
12.99 kB14-11-13 23:52
11.98 kB14-11-13 23:52
3.24 kB14-11-13 23:52
12.68 kB14-11-13 23:52
4.49 kB14-11-13 23:52
8.98 kB14-11-13 23:52
4.26 kB14-11-13 23:52
7.54 kB14-11-13 23:52
6.30 kB14-11-13 23:52
10.91 kB14-11-13 23:52
5.55 kB14-11-13 23:52
2.86 kB14-11-13 23:52
CloseNormal.png6.67 kB14-11-13 23:29
CloseSelected.png5.58 kB14-11-13 23:29
HelloWorld.png156.37 kB14-11-13 23:29
&GL&0.00 B14-11-13 23:39
&jni&0.00 B14-11-13 23:41
&Classes&0.00 B14-11-13 23:49
&Shapes&0.00 B14-11-13 23:42
&Contacts&0.00 B14-11-13 23:42
&Joints&0.00 B14-11-13 23:43
&constraints&0.00 B14-11-13 23:43
&src&0.00 B14-11-13 23:39
&android&0.00 B14-11-13 23:41
&data_support&0.00 B14-11-13 23:41
&image_support&0.00 B14-11-13 23:41
&zip_support&0.00 B14-11-13 23:42
&CCControlExtension&0.00 B14-11-13 23:37
&CCEditBox&0.00 B14-11-13 23:38
&CCScrollView&0.00 B14-11-13 23:38
&__&0.00 B14-11-13 23:34
&Collision&0.00 B14-11-13 23:42
&Common&0.00 B14-11-13 23:42
&Dynamics&0.00 B14-11-13 23:43
&Rope&0.00 B14-11-13 23:43
&src&0.00 B14-11-13 23:43
&actions&0.00 B14-11-13 23:38
&base_nodes&0.00 B14-11-13 23:38
&cocoa&0.00 B14-11-13 23:38
&draw_nodes&0.00 B14-11-13 23:38
&effects&0.00 B14-11-13 23:39
&kazmath&0.00 B14-11-13 23:39
&keypad_dispatcher&0.00 B14-11-13 23:39
&label_nodes&0.00 B14-11-13 23:39
&layers_scenes_transitions_nodes&0.00 B14-11-13 23:39
&menu_nodes&0.00 B14-11-13 23:39
&misc_nodes&0.00 B14-11-13 23:39
&particle_nodes&0.00 B14-11-13 23:39
&platform&0.00 B14-11-13 23:39
&script_support&0.00 B14-11-13 23:41
&shaders&0.00 B14-11-13 23:41
&sprite_nodes&0.00 B14-11-13 23:41
&support&0.00 B14-11-13 23:41
&textures&0.00 B14-11-13 23:42
&text_input_node&0.00 B14-11-13 23:42
&tilemap_parallax_nodes&0.00 B14-11-13 23:42
&touch_dispatcher&0.00 B14-11-13 23:42
&jni&0.00 B14-11-13 23:36
&opensl&0.00 B14-11-13 23:37
&CCBReader&0.00 B14-11-13 23:37
&GUI&0.00 B14-11-13 23:38
&LocalStorage&0.00 B14-11-13 23:38
&network&0.00 B14-11-13 23:38
&physics_nodes&0.00 B14-11-13 23:38
&hellocpp&0.00 B14-11-13 23:34
&__&0.00 B14-11-13 23:34
&AndroidDemo&0.00 B14-11-13 23:53
&lib&0.00 B14-11-13 23:52
&box2d_static&0.00 B14-11-13 23:43
&chipmunk_static&0.00 B14-11-13 23:43
&cocos2dx_static&0.00 B14-11-13 23:42
&cocosdenshion_static&0.00 B14-11-13 23:36
&cocos_extension_static&0.00 B14-11-13 23:38
&game_shared&0.00 B14-11-13 23:34
&lz&0.00 B14-11-13 23:49
&cocos2dx&0.00 B14-11-13 23:52
&drawable-hdpi&0.00 B14-11-13 23:53
&drawable-ldpi&0.00 B14-11-13 23:53
&drawable-mdpi&0.00 B14-11-13 23:53
&drawable-xhdpi&0.00 B14-11-13 23:53
&AndroidDemo&0.00 B14-11-13 23:53
&objs&0.00 B14-11-13 23:43
&AndroidDemo&0.00 B14-11-13 23:28
&lib&0.00 B14-11-13 23:51
&com&0.00 B14-11-13 23:49
&org&0.00 B14-11-13 23:49
&crunch&0.00 B14-11-13 23:53
&lz&0.00 B14-11-13 23:49
&armeabi&0.00 B14-11-13 23:49
&lz&0.00 B14-11-13 23:28
&cocos2dx&0.00 B14-11-13 23:52
&classes&0.00 B14-11-13 23:49
&dexedLibs&0.00 B14-11-13 23:53
&res&0.00 B14-11-13 23:53
&com&0.00 B14-11-13 23:49
&hellocpp&0.00 B14-11-13 23:29
&armeabi&0.00 B14-11-13 23:49
&local&0.00 B14-11-13 23:34
&drawable-hdpi&0.00 B14-11-13 23:28
&drawable-ldpi&0.00 B14-11-13 23:28
&drawable-mdpi&0.00 B14-11-13 23:28
&drawable-xhdpi&0.00 B14-11-13 23:28
&layout&0.00 B14-11-13 23:29
&values&0.00 B14-11-13 23:28
&com&0.00 B14-11-13 23:28
&org&0.00 B14-11-13 23:29
&.settings&0.00 B14-11-13 23:49
&assets&0.00 B14-11-13 23:48
&bin&0.00 B14-11-13 23:53
&gen&0.00 B14-11-13 23:49
&jni&0.00 B14-11-13 23:29
&libs&0.00 B14-11-13 23:43
&obj&0.00 B14-11-13 23:34
&res&0.00 B14-11-13 23:28
&src&0.00 B14-11-13 23:29
&Classes&0.00 B14-11-13 23:48
&proj.android&0.00 B14-11-13 23:49
&Resources&0.00 B14-11-13 23:29
&AndroidDemo&0.00 B14-11-13 23:29
Sponsored links
评价成功,多谢!
下载AndroidDemo.rar
CodeForge积分(原CF币)全新升级,功能更强大,使用更便捷,不仅可以用来下载海量源代码马上还可兑换精美小礼品了
您的积分不足
支付宝优惠套餐快速获取 30 积分
10积分 / ¥100
30积分 / ¥200原价 ¥300 元
100积分 / ¥500原价 ¥1000 元
订单支付完成后,积分将自动加入到您的账号。以下是优惠期的人民币价格,优惠期过后将恢复美元价格。
支付宝支付宝付款
微信钱包微信付款
更多付款方式:、
您本次下载所消耗的积分将转交上传作者。
同一源码,30天内重复下载,只扣除一次积分。
鲁ICP备号-3 runtime:Elapsed:131.464ms 27.69
登录 CodeForge
还没有CodeForge账号?
Switch to the English version?
^_^"呃 ...
Sorry!这位大神很神秘,未开通博客呢,请浏览一下其他的吧}

我要回帖

更多关于 cocos2dx安装 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信