我一直在努力与Parse合作一段时间,我遇到了一个简单的问题。我相信我错过了一些语法,但我可能错了。
每次我跑线,
Parse.initialize(this, "APP_ID", "CLIENT_ID");
我的订单可能错误。但在我的系统上他们是正确的。 应用程序打开然后立即关闭。当我移动代码时,它在该窗口上崩溃。
我错过了什么?
这是我的pointApp.java文件:
import android.app.Application;
import android.util.Log;
import com.parse.Parse;
public class pointApp extends Application {
public void onCreate(){
super.onCreate();
Log.w("CONTENT:","OPENING...");
try {
Parse.enableLocalDatastore(this);
Parse.initialize(this, "APP_ID", "CLIENT_ID");
}catch(Exception e){
//Log.v("Error:", "Unable to connect");
}
}
}
在我的活动页面上,启动.java:
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.widget.Button;
public class launch extends Activity{
protected void onCreate(Bundle savedInstanceState){
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
super.onCreate(savedInstanceState);
//here check if the gps is on.
setContentView(R.layout.gps_check);
/*THIS SHOULD REMOVE BECASE THEY SHOULDNT BE ABLE TO SKIP THE GPS SCREEN*/
Button continue_btn = (Button) findViewById(R.id.continue_btn);
continue_btn.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
startActivity(new Intent("android.intent.action.start"));
}
});
/*END OF CODE THAT GETS REMOVE */
}
}
Android Manifest:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.-.point">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application
android:allowBackup="true"
android:label="@string/app_name"
android:icon="@drawable/ic_launcher"
android:theme="@style/AppTheme"
android:name=".pointApp">
<activity
android:name=".launch"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name=".start"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.start"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity android:name=".login"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.login"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity android:name=".signup"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.signup"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity android:name=".friends_list"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.friends_list"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity android:name=".add_friend"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.add_friend"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity android:name=".point"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.point"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
</application>
答案 0 :(得分:0)
您需要替换您的应用ID和客户端ID。它位于Parse仪表板上。
答案 1 :(得分:-1)
也许你的jar文件坏了。 请检查您的lib jar文件。 我在项目中看到了这样的错误。 当我交换lib jar文件时,错误消失了。 请尝试这种方式。