0
マイインターフェースエラーは、レトロフィット接続
@POST("/insert.php")
void login(Callback<Response> callback);
Javaコード
Retrofit adapter = new Retrofit.Builder()
.baseUrl(ROOT_URL) //Setting the Root URL
.addConverterFactory(GsonConverterFactory.create())
.build(); //Finally building the adapter
Register_Retrofit api = adapter.create(Register_Retrofit.class);
api.login(new Callback<Response>() {
public void onResponse(Call<Response> call, Response<Response> response) {
}
public void onFailure(Call<Response> call, Throwable t) {
}
});
「エラー」を明確にすることはできますか? 「エラー」はどういう意味ですか?コンパイル時間?ランタイム?スタックトレース?あなたのコードが期待どおりに機能していないことだけですか?あなたは何をすることを期待していましたか? – Stultuske
何が原因でしたか? –