728x90
반응형

Android 176

(스크랩 ) android animation 종류

스크랩 !! https://jinsangjin.tistory.com/30 [Android] 안드로이드 애니메이션 종류 #Property #View #Transition 최근 안드로이드 앱 개발을 하면서 애니메이션을 사용해보고 있다. 그런데 같은 애니메이션도 구현하는 방식이 천차만별이다. 애니메이션에 대해서 개념을 잡고 갈 필요성을 느껴 정리 해보고 jinsangjin.tistory.com 최근 안드로이드 앱 개발을 하면서 애니메이션을 사용해보고 있다. 그런데 같은 애니메이션도 구현하는 방식이 천차만별이다. 애니메이션에 대해서 개념을 잡고 갈 필요성을 느껴 정리 해보고자 한다. https://medium.com/@shubham08gupta/a-beginners-guide-to-implement-androi..

Android 2022.03.02

android ISP 연동 관련

private void Set_Cookeis(){ /* * Third party cookies 사용의 차단으로 안심클릭 카드 결제 시, * 보안 키보드를 불러오지 못 하는 이슈 등이 발생할 수 있으니 하기 설정을 확인하십시오 * */ CookieManager cookieManager = CookieManager.getInstance(); cookieManager.setAcceptCookie(true); cookieManager.setAcceptThirdPartyCookies(webView,true); webView.getSettings().setMixedContentMode(WebSettings.MIXED_CONTENT_ALWAYS_ALLOW); } 참고 페이지 https://developers.nice..

Android 2022.01.25

Android 비디오 재생하기 ( VideoView)

public class Video_Activity extends AppCompatActivity { /* * 비디오 뷰는 두가지 방법이 있다. * 1) MediaPlayer 를 사용 하는 방법. * 2) VideoView 를 사용 하는 방법. * * 아래는 2번 방법으로 구현 해보았다. * 동영상이 재생이 안되는 경우는 http -> https 로 바꾼다. * */ VideoView video_view; AppCompatButton btn_set; // sample 데이터 @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity..

Android 2021.09.10

안드로이드 동적 뷰생성 ( inflate )

준비물 1. 만들 뷰 xml 생성 2. 저장하고싶은 LinearLayout 생성 3. 동적으로 생성된 뷰 클래스 만들기 ( 선택사항 ) 1. 만들 뷰 xml 생성 2. 저장 하고 싶은 Layout 3. 뷰클래스 ( 선택사항 ) public class Layout_money extends LinearLayout { public Layout_money(Context context, @Nullable AttributeSet attrs) { super(context, attrs); init(context); } public Layout_money(Context context) { super(context); init(context); } private void init(Context context){ Layou..

Android 2021.09.02
728x90
반응형