Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- java 8
- Selector
- 아이콘
- Resources
- 주님의교회
- 영성
- 제이쿼리
- Java
- 자바
- 안드로이드 AVD
- Activity
- TinyMCE
- CSS
- 웹개발
- Intent
- 생명주기
- 인텐트
- androidstudio
- #청주주님의교회
- 회원가입
- Android
- jQuery
- 청주
- 에디터
- 프로그래밍
- 게시판
- Spring
- JavaScript
- 글쓰기
- 안드로이드
Archives
- Today
- Total
공부하는 블로그
(안드로이드 프로그래밍) Intent (인텐트)- 수정중 본문
새로운 프로젝트를 시작한다.
Linear 레이아웃
orientation
이름은 NewActivity로 생성한다.
1 2 3 4 5 6 7 8 9 10 11 12 | <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:orientation="vertical" android:background="#0000FF" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.ktds.lesson05.NewActivity"> <!-- 새로운 액티비티에 파랑색 --> </LinearLayout> | cs |
new Intent( a , b )
a: 현재 Activity.this
b: 새로운 Activity.class
인텐트로 새로운 맥티비티 보여주기
R.id과정이 빠져있다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | package com.ktds.lesson05; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; public class MainActivity extends AppCompatActivity { private Button btn_new_Activity; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); btn_new_Activity.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new intent( MainActivity.this , NewActivity.class); startActivity(intent); } }); } } | cs |
'Develop > 안드로이드' 카테고리의 다른 글
https://material.io/icons (0) | 2017.09.28 |
---|---|
(안드로이드 프로그래밍) 사전 어플리케이션 만들기 (수정중) (0) | 2017.09.27 |
(안드로이드 프로그래밍) 미니 계산기 만들기 실습 (0) | 2017.09.26 |
(안드로이드 프로그래밍) Activity? Activity 생명주기 (0) | 2017.09.26 |
(안드로이드 프로그래밍) 회원가입 Form 만들기 (0) | 2017.09.26 |