私はAndroidアプリを作ることを自分自身に教えようとしているので、リストビューでtumblrアカウントからの画像を表示するアプリを作成しようとしています。
JSONObjectの解析に問題があり、nullPointerExceptionが原因でアプリがクラッシュします。
私のコードは次のようになります。
public class Example extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
ArrayList<Tweet> tweets;
try {
tweets = getTweets();
ListView listView = (ListView) findViewById(R.id.ListViewId);
listView.setAdapter(new UserItemAdapter(this, R.layout.listitem,
tweets));
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public class UserItemAdapter extends ArrayAdapter<Tweet> {
private ArrayList<Tweet> tweets;
public UserItemAdapter(Context context, int imageViewResourceId,
ArrayList<Tweet> tweets) {
super(context, imageViewResourceId, tweets);
this.tweets = tweets;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
if (v == null) {
LayoutInflater vi = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = vi.inflate(R.layout.listitem, null);
}
Tweet tweet = tweets.get(position);
if (tweet != null) {
ImageView image = (ImageView) v.findViewById(R.id.avatar);
if (image != null) {
image.setImageBitmap(getBitmap(tweet.image_url));
}
}
return v;
}
}
public Bitmap getBitmap(String bitmapUrl) {
try {
URL url = new URL(bitmapUrl);
return BitmapFactory.decodeStream(url.openConnection()
.getInputStream());
} catch (Exception ex) {
return null;
}
}
public ArrayList<Tweet> getTweets() throws ClientProtocolException,
IOException, JSONException {
String searchUrl = "http://api.tumblr.com/v2/blog/www.richkidsofinstagram.tumblr.com/posts?api_key=API_KEY";
ArrayList<Tweet> tweets = new ArrayList<Tweet>();
HttpClient client = new DefaultHttpClient();
HttpGet get = new HttpGet(searchUrl);
ResponseHandler<String> responseHandler = new BasicResponseHandler();
String responseBody = null;
try {
responseBody = client.execute(get, responseHandler);
} catch (Exception ex) {
ex.printStackTrace();
}
JSONObject jsonObject = new JSONObject(responseBody);
JSONArray arr = null;
try {
arr = jsonObject.getJSONArray("results");
} catch (Exception ex) {
Log.v("TEST", "Exception: " + ex.getMessage());
}
for (int i = 0; i < arr.length(); i++) {
Tweet tweet = new Tweet(arr.getJSONObject(i).getString("photos"));
tweets.add(tweet);
}
return tweets;
}
public class Tweet {
public String image_url;
public Tweet(String url) {
this.image_url = url;
}
}
}
nullPointerExceptionは124行目で発生します。
for (int i = 0; i < arr.length(); i++) {
Tweet tweet = new Tweet(arr.getJSONObject(i).getString("photos"));
tweets.add(tweet);
}
また、www.jsonlint.comを介してアドレスを検証しましたが、JSONは次のようになります。
{
"meta": {
"status": 200,
"msg": "OK"
},
"response": {
"blog": {
"title": "Rich Kids Of Instagram",
"posts": 154,
"name": "richkidsofinstagram",
"url": "http://richkidsofinstagram.tumblr.com/",
"updated": 1346803265,
"description": "They have more money than you and this is what they do.
"ask": true,
"ask_anon": true
},
"posts": [
{
"blog_name": "richkidsofinstagram",
"id": 30900248446,
"post_url": "http://richkidsofinstagram.tumblr.com/post/30900248446/hamptons-are-good",
"slug": "hamptons-are-good",
"type": "photo",
"date": "2012-09-04 23:58:45 GMT",
"timestamp": 1346803125,
"state": "published",
"format": "html",
"reblog_key": "2KosMjea",
"tags": [
"pool",
"hamptons",
"summer",
"rich",
"wealth"
],
"highlighted": [],
"note_count": 99,
"caption": "<p><span>The Hamptons are…….. good. by matthewmorton</span></p>",
"photos": [
{
"caption": "",
"alt_sizes": [
{
"width": 500,
"height": 500,
"url": "http://24.media.tumblr.com/tumblr_m9uiqy9Mi71rb86ldo1_500.jpg"
},
{
"width": 400,
"height": 400,
"url": "http://25.media.tumblr.com/tumblr_m9uiqy9Mi71rb86ldo1_400.jpg"
},
{
"width": 250,
"height": 250,
"url": "http://25.media.tumblr.com/tumblr_m9uiqy9Mi71rb86ldo1_250.jpg"
},
{
"width": 100,
"height": 100,
"url": "http://25.media.tumblr.com/tumblr_m9uiqy9Mi71rb86ldo1_100.jpg"
},
{
"width": 75,
"height": 75,
"url": "http://25.media.tumblr.com/tumblr_m9uiqy9Mi71rb86ldo1_75sq.jpg"
}
],
"original_size": {
"width": 500,
"height": 500,
"url": "http://24.media.tumblr.com/tumblr_m9uiqy9Mi71rb86ldo1_500.jpg"
}
}
]
},
問題は、必要な画像サイズなどを指定していないことだと思いますが、問題を解決する方法がわかりません。
誰かが私がこの問題を解決するのを手伝ってくれるなら、それは非常に応用されるでしょう。