-2

以下のリストビューでmysqlデータベースのコンテンツを表示しようとしていますが、インターフェイスFetchDataListenerに実装しているリストアクティビティです。タイプ MainActivity のメソッド onFetchFailure(List) は、スーパークラス メソッド エラーをオーバーライドする必要があります

クラスおよびインターフェイス ファイルについては、以下を参照してください。

クラス

/*package com.example.androidhive;
import java.util.List;

import android.app.ListActivity;
import android.app.ProgressDialog;
import android.os.Bundle;
import android.widget.Toast;

public class MainActivity extends ListActivity implements FetchDataListener{
private ProgressDialog dialog;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);       
    setContentView(R.layout.activity_main);       
    initView();  
}

private void initView() {
    // show progress dialog
    dialog = ProgressDialog.show(this, "", "Loading...");

    String url = "http://192.168.0.2/android_login_api/include/apps.php";
    FetchDataTask task = new FetchDataTask(this);
    task.execute(url);
}

@Override
public void onFetchComplete(List<Application> data) {
    // dismiss the progress dialog
    if(dialog != null)  dialog.dismiss();
    // create new adapter
    ApplicationAdapter adapter = new ApplicationAdapter(this, data);
    // set the adapter to list
    setListAdapter(adapter);       
}

@Override
public void onFetchFailure(String msg) {
    // dismiss the progress dialog
    if(dialog != null)  dialog.dismiss();
    // show failure message
    Toast.makeText(this, msg, Toast.LENGTH_LONG).show();       
}
}
*/

インターフェース

/*package com.example.androidhive;

import java.util.List;

public interface FetchDataListener {
public void onFetchComplete(List<Application> data);

public void onFetchFailure(String msg);
}
*/

助けてください、よろしくお願いします

4

1 に答える 1