안드로이드 스튜디오 5

[안드로이드 스튜디오] 앱에서 글 쓰기 / 리스트생성 , 내가 쓴 글 리스트에 추가, 리스트 삭제 / listView , EditText 사용 글자 예시 , hint

일부분 소스는 아래 나올테지만 전체소스를 보고싶다면~ https://yangcottondev.tistory.com/36 [안드로이드 스튜디오] GCS 앱 만들기 - 전체소스 MainActivity.java package com.example.gcs; import androidx.appcompat.app.AlertDialog; import androidx.appcompat.app.AppCompatActivity; import android.content.DialogInterface; import android.content.Intent; import android.os.Bundle; import android.view.Layo yangcottondev.tistory.com 1. EditText 사용하여 앱..

[안드로이드 스튜디오] Intent 를 이용한 다른페이지 이동 / 페이지 이동시 앱이 튕길때 / 새로운 페이지 java와 xml 연동

전체 소스가 보고싶다면~ https://yangcottondev.tistory.com/36 [안드로이드 스튜디오] GCS 앱 만들기 - 전체소스 MainActivity.java package com.example.gcs; import androidx.appcompat.app.AlertDialog; import androidx.appcompat.app.AppCompatActivity; import android.content.DialogInterface; import android.content.Intent; import android.os.Bundle; import android.view.Layo yangcottondev.tistory.com 만든앱에 목록추가 버튼을 누르면 페이지를 이동시키려한다. 1...

[안드로이드 스튜디오] 원하는 부분만 스크롤 기능 주기 ScrollView

더보기 파란색으로 정한 칸 내에서만 스크롤을 적용하고 싶고 나머지는 고정하고싶다! 실제 스크롤을 하면 이렇게 리스트만 올라간다. 전체 소스를 보고싶은경우 https://yangcottondev.tistory.com/36 [안드로이드 스튜디오] GCS 앱 만들기 - 전체소스 MainActivity.java package com.example.gcs; import androidx.appcompat.app.AlertDialog; import androidx.appcompat.app.AppCompatActivity; import android.content.DialogInterface; import android.content.Intent; import android.os.Bundle; import androi..

[안드로이드 스튜디오] 다른 페이지에서 가져온 값으로 SeekBar 만들기, 다중 SeekBar 총합, progress , 커스텀

전체 소스를 보고싶은경우 https://yangcottondev.tistory.com/36 [안드로이드 스튜디오] GCS 앱 만들기 - 전체소스 MainActivity.java package com.example.gcs; import androidx.appcompat.app.AlertDialog; import androidx.appcompat.app.AppCompatActivity; import android.content.DialogInterface; import android.content.Intent; import android.os.Bundle; import android.view.Layo yangcottondev.tistory.com 1. 다른 페이지에서 가져온 값으로 SeekBar 만들기 먼저..

[안드로이드 스튜디오] GCS 앱 만들기 - 전체소스

MainActivity.java package com.example.gcs; import androidx.appcompat.app.AlertDialog; import androidx.appcompat.app.AppCompatActivity; import android.content.DialogInterface; import android.content.Intent; import android.os.Bundle; import android.view.LayoutInflater; import android.view.Menu; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.wi..