所以我的代码包括解析 json url 和从烂番茄 api 中获取值。我想不通的是如何拥有一个列表视图,当用户点击票房时,他们应该通过票房 api 进行解析。如果用户点击即将上映的电影,则应该解析该 URL。解析工作只需要修复我的列表视图
public class MainActivity extends Activity {
String boxOfficeUrl ="http://api.rottentomatoes.com/api/public/v1.0/lists/movies/box_office.json?page_limit=50&page=1&country=us&apikey=arjrkxx65yxywyefb8g2xxhs";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
new AsyncBox().execute(boxOfficeUrl);
}
protected void onPostExecute(List<Movie> result){
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
return super.onOptionsItemSelected(item);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}