私はAndroidの初心者です。AndroidのすべてのメソッドからメソッドonCreateを知っています。私はこの日、Android を学びたてです。
検索ワード「PART Z」!! そして「END OF PART Z」というワードで検索。
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
//PART Z
String consumerKey = "YII";
String consumerSecret = "YII";
String accessToken = "YII";
String accessTokenSecret = "YII";
//Instantiate a re-usable and thread-safe factory
TwitterFactory twitterFactory = new TwitterFactory();
//Instantiate a new Twitter instance
Twitter twitter = twitterFactory.getInstance();
//setup OAuth Consumer Credentials
twitter.setOAuthConsumer(consumerKey, consumerSecret);
//setup OAuth Access Token
twitter.setOAuthAccessToken(new AccessToken(accessToken, accessTokenSecret));
try {
User user = twitter.verifyCredentials();
List<Status> statuses = twitter.getMentionsTimeline();
System.out.println("Showing @" + user.getScreenName() + "'s mentions.");
for (Status status : statuses) {
System.out.println("@" + status.getUser().getScreenName() + " - " + status.getText());
}
} catch (TwitterException te) {
te.printStackTrace();
System.out.println("Failed to get timeline: " + te.getMessage());
}
int a = 6;
int b = 2;
System.out.println(a+b);
//END OF PART Z
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
パート Z のすべてのコードが機能しないようです。パーツ Z にすべてのコードを間違って入れていますか? これらのコードをどのメソッドに配置する必要がありますか? 私の問題を終わらせるのを手伝ってくれませんか?