Our developer blog has a nice tutorial on how to use the Graph API to upload photos. Although the code is in PHP, you can translate the sample code easily for Java. The relevant part of the tutorial is probably scenario 2: creating a new album and adding a photo.
To create a new album using our Graph API, you first need to have an access token that has the permission publish_stream. Then to create the new album:
Bundle params = new Bundle();
params.putString("name", "My Test Album Name Here");
params.putString("message", "My Test Album Description Here");
mAsyncRunner.request("me/albums", params, "POST", new CreateAlbumListener());
And in your CreateAlbumListener class, grab the newly created album ID in the onComplete() method. Once you have the album ID of the album you just created, to upload photos to that album:
1) Upload local photo (e.g. from gallery), assuming we have a variable data that is the byte array of the photo we wish to upload
Bundle params = new Bundle();
params.putByteArray("photo", data);
params.putString("caption", "Test description here");
mAsyncRunner.request("ALBUM_ID/photos", params, "POST");
2) Upload from remote (e.g. a URL to a photo)
Bundle params = new Bundle();
params.putString("url", "http://www.lolbrary.com/content/454/facebook-cat-9454.jpg");
params.putString("caption", "Cats are awesome");
mAsyncRunner.request("ALBUM_ID/photos", params, "POST");
ALBUM_ID is the variable that stores the album id of the album you just created. You can checkout HackBook, which is a sample app that we created to show you all the different calls you can do with the android SDK.
Let me know if that helps.