일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- release unsigned
- Java
- apache gzip
- CSS사용법
- html
- Android Apk 이름
- JavaScript
- android error
- Program type already present
- fragment
- Android Apk 이름 변경
- DataTable
- Exception
- FLUTTER
- css
- Firebase
- tomcat
- error
- spring
- MySQL
- Android
- Kotlin
- android fragment
- R프로그래밍
- Android Apk
- java error
- Eclipse
- jQuery
- release Apk
- 안드로이드
- Today
- Total
목록전체 글 (158)
selfstarter
Android adb command adb devices : 연결되어있는 디바이스 목록 보기 adb -s 1e6ad0(디바이스id) shell am broadcast -a com.test.broadcast.ACTION_RESULT -a --es re hello broadcast로 해당 app에 intent 전달하는 adb 명령어 --ez는 boolean, String은 --es(아래 참고) adb -s 0a1ab9d4f21e6ad0 shell am broadcast -a com.kscc.taxi.appmeter.ACTION_RESULT_OF_EXECUTE --es res finishMain [-e|--es ...] [--esn ...] [--ez ...] [--ei ...] [--el ...] [--ef..
Android apk install cmd 창 열기 Android apk 파일이 있는 폴더로 이동 adb devices 명령어 쳐서 연결되어있는 device id 확인 adb -s 0wer45erw234(device id) install -t app-debug.apk 성공 시 cmd에 success 표시 Performing Streamed Install Success
Setting String format in Android strings.xml에서 string 추가 StringFormatteExample %d번째 입니다 %s 버튼 입니다 %d %%입니다 %d$달러 입니다 MainActivity에서 format에 대한 값 지정 후 출력 Resources res = getResources(); String test_format_num = String.format(res.getString(R.string.test_format_num), 144); String test_format_string = String.format(res.getString(R.string.test_format_string), "확인"); String test_format_percent = Strin..
Internal error in Firestore (0.6.6-dev) 이미지를 firestorage에 올릴 때 해당 에러가 발생하면서 앱이 강제 종료 되었다 stack over flow나 여러곳을 찾았지만 원인을 알 수 없었다 해당 프로젝트는 instagram 클론 프로젝트 인강을 따라하고 있는 중이었다. 그래서 gradle에서 포함한 라이브러리를 강의와 똑같이 만들었다 com.google.code.gson:gson:2.8.6 com.google.http-client:google-http-client:1.34.0 com.google.http-client:google-http-client-android:1.34.0 com.google.http-client:google-http-client-gson:1.3..
Animation simple example in Android Android Animation 예제(애니메이션 방식) 00~03.png file drop into drawable folder Add animation-list file in drawable folder write animation image list option android:oneshot="true" : if finished animation, it would stop add Code in activity_main.xml add Code in MainActivityImageView testImage = (ImageView)findViewById(R.id.testAnimation); AnimationDrawable animationDra..
Simple Current Time Example It is simple better than using thread package com.tmoney.taxi.sendmessagedelayed; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.os.Handler; import android.os.Message; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.TextView; import java.text.SimpleDateFormat; import java..
BroadcastReciver app to app BroadcastReciver란 Android 시스템 등으로 부터 어떤 이벤트가 발생했을 시 수신등록을 했다면 수신 알람을 받는 기능이다. 그러므로 A와 B 둘 다 같은 폰에 있는 app이어야 한다 BroadcastReciver app to app Example send broadcast app send broadcast to B when I click send button public void click(View v) { Intent intent = new Intent(); intent.setAction("com.test.broadcastexample"); // action name intent.putExtra("data", "Notice me senp..
requestFeature() must be called before adding content Error Solve @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); // add between super.onCreate function and setContentView setContentView(R.layout.activity_main); } but This solution is better only changed titlebar status true