안드로이드 강의 정리 (홍드로이드)
TextView EditText & Button Intent 화면전환 안드로이드 앱 만들기 #0 (안드로이드 스튜디오 설치 및 환경설정) 구글에서 안드로이도 스튜디오 검색 https://developer.android.com/studio?hl=ko 안드로이드 앱 만들기 #1 (TextView) 안드로이드 앱 만들기 #2 (EditText & Button) 안드로이드 앱 만들기 #3 (Intent 화면전환) activity_main.xml <LinearLayout android:layout_width=”match_parent” android:layout_height=”match_parent”> <EditText android:id=”@+id/et_test” android:layout_width=”200dp” android:layout_height=”wrap_content” /> <Button android:id=”@+id/btn_move” android:layout_width=”wrap_content” android:layout_height=”wrap_content” android:text=”이동”/> </LinearLayout> activity_sub.xml <LinearLayout android:layout_width=”match_parent” android:layout_height=”match_parent”> <TextView android:id=”@+id/tv_sub” android:layout_width=”wrap_content” android:layout_height=”wrap_content” android:textSize=”30sp” android:text=”서브 액티비티 도착”/> </LinearLayout> MainActivity.java public class MainActivity extends…
Read More