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 |
Tags
- Android Studio
- 안드로이드 앱 만들기
- 개발자
- 앱 만들기
- Android
- 자바 튜토리얼
- 안드로이드 네비게이션 메뉴
- android tutorial
- 안드로이드
- 안드로이드 서비스
- 안드로이드 기초
- java
- flutter
- 안드로이드 코딩 기초
- android example
- android studio 앱 만드는 법
- Android Java
- 홍드로이드
- 홍드로이드 강의
- IOS
- 앱 만드는 법
- 안드로이드 스튜디오
- 코틀린
- 안드로이드 튜토리얼
- hongdroid
- 안드로이드 예제
- 개발강의
- 자바
- 코딩
- 플러터
Archives
- Today
- Total
홍드로이드의 야매코딩
#4 안드로이드 스튜디오 이미지뷰 (ImageView) 예제 [ 홍드로이드 ] 본문
[activity_main.xml]
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | <?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:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context=".MainActivity"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="홍드로이드" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintHorizontal_bias="0.05" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" app:layout_constraintVertical_bias="0.032" /> <TextView android:id="@+id/textView2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="앱개발자" tools:layout_editor_absoluteX="16dp" tools:layout_editor_absoluteY="70dp" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="안녕하세요" /> <EditText android:id="@+id/et_test" android:layout_width="100dp" android:layout_height="wrap_content" /> <Button android:id="@+id/btn_test" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="버튼" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="left"> <ImageView android:id="@+id/test" android:layout_width="100dp" android:layout_height="100dp" android:src="@mipmap/ic_launcher" /> </LinearLayout> </LinearLayout> | cs |
[MainActivity.java]
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | package com.example.study01; import android.content.Intent; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.ImageView; import android.widget.Toast; public class MainActivity extends AppCompatActivity { EditText et_test; Button btn_test; ImageView test; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); et_test = (EditText)findViewById(R.id.et_test); btn_test = (Button)findViewById(R.id.btn_test); btn_test.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(MainActivity.this, SubActivity.class); startActivity(intent); } }); test = (ImageView)findViewById(R.id.test); test.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Toast.makeText(getApplicationContext(),"홍드로이드 잘생김",Toast.LENGTH_SHORT).show(); } }); } } | cs |
[activity_sub.xml]
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | <?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:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context=".MainActivity"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="홍드로이드" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintHorizontal_bias="0.05" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" app:layout_constraintVertical_bias="0.032" /> <TextView android:id="@+id/textView2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="앱개발자" tools:layout_editor_absoluteX="16dp" tools:layout_editor_absoluteY="70dp" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="안녕하세요"/> <EditText android:id="@+id/et_test" android:layout_width="100dp" android:layout_height="wrap_content" /> <Button android:id="@+id/btn_test" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="버튼"/> </LinearLayout> | cs |
[SubActivity.java]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | package com.example.study01; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v7.app.AppCompatActivity; public class SubActivity extends AppCompatActivity { @Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_sub); } } | cs |
'Android Java' 카테고리의 다른 글
#6 안드로이드 스튜디오 리스트뷰 (ListView) 예제 [ 홍드로이드 ] (0) | 2019.05.21 |
---|---|
#5 안드로이드 스튜디오 폴더 패키지 구조 설명 [ 홍드로이드 ] (0) | 2019.05.21 |
#3 안드로이드 스튜디오 인텐트 (Intent) 예제 [ 홍드로이드 ] (0) | 2019.05.19 |
#2 안드로이드 스튜디오 에딧텍스트 (EditText) 예제 [ 홍드로이드 ] (2) | 2019.05.18 |
#1 안드로이드 스튜디오 텍스트뷰 (TextView) 예제 [ 홍드로이드 ] (0) | 2019.05.18 |
Comments