吐司没有显示

时间:2015-07-25 10:21:34

标签: android android-activity toast oncreate

我创建了一个简单的应用程序,它读取json数据并在我的MainActivity.java中的列表视图中显示所有结果

package com.test.rajat.minivie;

import android.app.SearchManager;
import android.content.Context;
import android.content.Intent;
import android.graphics.Typeface;
import android.os.AsyncTask;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.support.v7.widget.SearchView;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ListView;
import android.widget.TextView;

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import java.util.ArrayList;
import java.util.HashMap;

public class MainActivity extends ActionBarActivity implements AdapterView.OnItemClickListener{
private ListView list_movies;
private MyAdapter adapter;
private SearchView searchView;
private DetailsActivity details;
TextView tv_title,tv_releaseYear;
Typeface face;
JSONParser parser;
ArrayList<HashMap<String,String>> movies_list;
private static String url="https://api.themoviedb.org/3/search/movie?api_key=<pastedkey>";
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    face = Typeface.createFromAsset(getAssets(), "fonts/Roboto-Thin.ttf");
    list_movies = (ListView) findViewById(R.id.list_movies);
    tv_title = (TextView) findViewById(R.id.tv_title);
    tv_releaseYear = (TextView) findViewById(R.id.tv_releaseYear);
    list_movies.setOnItemClickListener(this);
    handleIntent(getIntent());
    parser = new JSONParser();
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.menu_main, menu);
    SearchManager searchManager =
            (SearchManager) getSystemService(Context.SEARCH_SERVICE);
     searchView=
            (SearchView) menu.findItem(R.id.action_search).getActionView();
    searchView.setSearchableInfo(
            searchManager.getSearchableInfo(getComponentName()));
    searchView.setIconifiedByDefault(false);
    final SearchView.OnQueryTextListener queryTextListener = new SearchView.OnQueryTextListener() {
        @Override
        public boolean onQueryTextChange(String newText) {

            return true;
        }

        @Override
        public boolean onQueryTextSubmit(String query) {
//                TextView textView=(TextView)findViewById(R.id.tvb_title);
//                textView.setText(query);
            String newquery=url+query.replaceAll(" ","%20");
            new RetrieveJSON().execute(newquery);
            searchView.clearFocus();
            return true;
        }
    };
    searchView.setOnQueryTextListener(queryTextListener);
    return true;
}
private void handleIntent(Intent intent) {

    if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
        String query = intent.getStringExtra(SearchManager.QUERY);
    }
}
@Override
protected void onNewIntent(Intent intent) {

    handleIntent(intent);
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml
    int id = item.getItemId();
    switch(id)
    {
        case R.id.action_settings:
            return true;
        case R.id.action_search:
    }

    return super.onOptionsItemSelected(item);
}

@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
    details=new DetailsActivity();

    HashMap<String,String> movie_details=movies_list.get(position);
    Intent i=new Intent(this,DetailsActivity.class);
    i.putExtra("movie_details", movie_details);
    startActivity(i);


}

class RetrieveJSON extends AsyncTask<String,String,String>
{
    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        movies_list=new ArrayList<HashMap<String,String>>();
    }

    @Override
    protected String doInBackground(String... params) {

        String str_json= parser.getJSONFromUrl(params[0]);
        Log.d("URL",params[0]);
        try {
            JSONObject json=new JSONObject(str_json);
            JSONArray jsonArray=new JSONArray(json.getString("results"));
            Log.d("LEN",Integer.toString(jsonArray.length()));
            for(int i=0;i<jsonArray.length();i++)
            {
                JSONObject tmp=jsonArray.getJSONObject(i);
                String title=tmp.getString("title");
                String release_date=tmp.getString("release_date");
                String overview=tmp.getString("overview");
                String rating=tmp.getString("vote_average");
                String poster_path=tmp.getString("poster_path");
                String backdrop_path=tmp.getString("backdrop_path");
                String vote_average=tmp.getString("vote_average");
                HashMap<String,String> movie=new HashMap<>();
                movie.put("title",title);
                movie.put("release_date",release_date);
                movie.put("overview",overview);
                movie.put("rating",rating);
                movie.put("poster_path",poster_path);
                movie.put("backdrop_path",backdrop_path);
                movie.put("vote_average",vote_average);
                movies_list.add(movie);
            }

        }

        catch(JSONException e)
        {

        }
        return null;
    }

    @Override
    protected void onPostExecute(String result) {
        super.onPostExecute(result);
        adapter=new MyAdapter(MainActivity.this,R.layout.row,movies_list);
        list_movies.setAdapter(adapter);
    }
}
}

在OnItemClick()中,我正在启动另一个活动并向其添加listitem数据。但是DetailsActivity.java没有生成我放入onCreate()的toast。有什么帮助吗?

DetailsActivity.java

package com.test.rajat.minivie;

import android.content.Intent;
import android.os.Bundle;
import android.os.PersistableBundle;
import android.support.v7.app.ActionBarActivity;
import android.util.Log;
import android.view.Menu;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;

import com.squareup.picasso.Picasso;

import java.util.HashMap;

/**
 * Created by Rajat on 7/16/2015.
 */
public class DetailsActivity extends ActionBarActivity {
    private HashMap<String,String> movie_details;
    private ImageView iv_poster_b;
    private TextView tv_title_b;
    @Override
    public void onCreate(Bundle savedInstanceState, PersistableBundle persistentState) {
        super.onCreate(savedInstanceState, persistentState);
        setContentView(R.layout.activity_movie_details);
        Intent intent=getIntent();
        movie_details=(HashMap<String,String>) intent.getSerializableExtra("movie_details");
        iv_poster_b=(ImageView) findViewById(R.id.iv_poster_b);
        tv_title_b=(TextView) findViewById(R.id.tv_title_b);
        Log.d("TAG","Created");
        // This toast and function is not getting called  //
        Toast.makeText(this, "title", Toast.LENGTH_SHORT).show();
        setDetails();

    }
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.menu_main, menu);
        return true;
    }

    private void setDetails(){
        tv_title_b.setText(movie_details.get("title"));
        Picasso.with(this).load("http://image.tmdb.org/t/p/w500"+movie_details.get("poster_path")).into(iv_poster_b);

    }
}

3 个答案:

答案 0 :(得分:0)

您将逻辑放在Android的API 21中添加的方法中的 DetailsActivity

@Override
public void onCreate(Bundle savedInstanceState, PersistableBundle persistentState) {

}

根据docs

  

与onCreate(android.os.Bundle)相同,但要求将使用persistableMode属性设置为persistAcrossReboots创建的活动。

将其更改为:

@Override
protected void onCreate(Bundle savedInstanceState) {

}

现在它应该工作

答案 1 :(得分:0)

我认为你覆盖错误的onCreate()方法将其改为

  

@覆盖

     

public void onCreate(Bundle savedInstanceState){

     

super.onCreate(savedInstanceState);

请尝试更改

  

Toast.makeText(this,“title”,Toast.LENGTH_SHORT).show();

  

Toast.makeText(DetailsActivity.this,“title”,Toast.LENGTH_SHORT).show();

答案 2 :(得分:0)

只需覆盖正确的onCreate()方法即可

 @Override
 protected void onCreate(Bundle savedInstanceState){
 }

不是

public void onCreate (Bundle savedInstanceState, PersistableBundle persistentState)