'Android' 카테고리의 글 목록 (2 Page) — 뚝딱이

Android

Android

[Android Studio] 안드로이드 스튜디오 Java Recycler View 만들기

1. Build.gradle 수정 implementation 'com.android.support:recyclerview-v7:28.0.0' https://pasongsong.tistory.com/123 [Android Studio] Version 28 (intended for Android Pie and below) is the last version of the legacy support library, so we recomm Refactor > Migrate to AndroidX 체크해서 백업 해주고 Migrate 클릭 자동으로 생성해줌 굿 pasongsong.tistory.com 2. Item layout 구성 하나 만들어 줍니다. 3. Class 만들기 package com.example.k_f..

Android

[Android Studio] 안드로이드 스튜디오 Java image Button 생성하기

Android Studio Button 생성 1. layout에 버튼 추가하기 image button id = CIChoose_BTN 2. Activity에 image button을 추가해준다 public class MainActivity extends AppCompatActivity implements View.OnClickListener { private ImageButton cb_btn; // imagebuttion 생성 cb_btn = (ImageButton)findViewById(R.id.CIChoose_BTN); //layout과 연결 cb_btn.setOnClickListener(this); //clickLinstener activity 연결, 현재 Mainactivity 있으니 this를 ..

파송송
'Android' 카테고리의 글 목록 (2 Page)