今更感がありますが
ABC 2014 Winterに参加してきました。
体調が万全でなかったのですぐに帰りましたけどandroidの開発が今まで以上にやりやすくなった感じがしたのでサンプルアプリを作成しました。
作ったもの
※やべえw。Hello worldが出たままw
作成
新規にプロジェクトを作成
プロジェクトの名前や場所を指定
そのまま次へ
画面はブランクのもの
そのまま完了
初期画面
画面配置
アイテムを配置
実装
MainActivityに処理を追加
package com.example.matsumotoshigeharu.sampleappcounter; import android.support.v7.app.ActionBarActivity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import android.view.View; // 追加 import android.widget.Button; import android.widget.TextView; public class MainActivity extends ActionBarActivity { // 追加 int count = 0; private TextView counter_text; private Button push_btn; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); // 追加:画面のアイテムと紐付け counter_text = (TextView)findViewById(R.id.txt_counter); push_btn = (Button)findViewById(R.id.btn_push); // 追加:クリック push_btn.setOnClickListener(new View.OnClickListener(){ @Override public void onClick(View v){ count++; counter_text.setText(String.valueOf(count)); } }); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.menu_main, menu); return true; } @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(); //noinspection SimplifiableIfStatement if (id == R.id.action_settings) { return true; } return super.onOptionsItemSelected(item); } }
実行