CODEDRAGON ㆍDevelopment/Android
MainActivity.java
- 파일의 빨강색으로 마킹한 부분 삭제/수정
- ActionBarActivity > Activity 로 수정
- 마우스 우클릭 > Source > Organize Imports
package kr.android.helloworld;
import android.support.v7.app.ActionBarActivity; import android.support.v7.app.ActionBar; import android.support.v4.app.Fragment; import android.os.Bundle; import android.view.LayoutInflater; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.view.ViewGroup; import android.os.Build;
public class MainActivity extends ActionBarActivity {
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main);
if (savedInstanceState == null) { getSupportFragmentManager().beginTransaction() .add(R.id.container, new PlaceholderFragment()) .commit(); } }
@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; }
@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(); if (id == R.id.action_settings) { return true; } return super.onOptionsItemSelected(item); }
/** * A placeholder fragment containing a simple view. */ public static class PlaceholderFragment extends Fragment {
public PlaceholderFragment() { }
@Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = inflater.inflate(R.layout.fragment_main, container, false); return rootView; } }
} |
최초 프로젝트 생성 후 MainActivity.java파일
기본 형태로 만든 MainActivity.java파일 내용
'Development > Android' 카테고리의 다른 글
기존 프로젝트 파일 불러오기 (import)-workspace 폴더안에 있는 프로젝트 파일을 eclipse에 import하기 (0) | 2014.06.11 |
---|---|
기본 형태 프로젝트 만들기 순서 (0) | 2014.06.11 |
appcompat_v7_x 삭제 (0) | 2014.06.11 |
HelloWorld, Hello Android-기본 프로젝트 생성하기 (0) | 2014.06.11 |
모바일, PC, 앱, 모바일웹 사용량 추이 (0) | 2014.06.11 |