Notification notification = new Notification(R.drawable.ic_launcher, getText(R.string.app_name), System.currentTimeMillis()); Intent notificationIntent = new Intent(this, AT_main.class); PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0); notification.setLatestEventInfo(this, "test", "test2", pendingIntent); startForeground(12345, notification);
package kr.priv.logManagement; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; public class AT_main extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.layout_main); } @Override public boolean onCreateOptionsMenu(Menu..
private void getPreferences() { SharedPreferences pref = getSharedPreferences("pref", MODE_PRIVATE); String a = pref.getString("key1", ""); Toast.makeText(this, a, 0).show(); } // 값 저장하기 private void savePreferences() { SharedPreferences pref = getSharedPreferences("pref", MODE_PRIVATE); SharedPreferences.Editor editor = pref.edit(); editor.putString("key1", "data"); editor.commit(); } // 값(Key ..
void deleteNode(NODE* hd, int delCnt){ int i; NODE* delPt; for(i=1;inext; } delPt = hd->next; hd->next = hd->next->next; free(delPt); } ////////////////////////////////////////////////////////////////////////// void deleteNode(NODE* hd, int delCnt){ int i; NODE* delPt; for(i=1;inext; } hd->next = hd->next->next; free(hd->next); } //////////////////////////////////////////////////////////////////..
#include #include #include void main( void ){ int i, j, row, col; // 핼, 열 int **length; // 동적배열의 첫 주소 int colInRow[100]; // 출력에 사용 printf("몇 행을 만드시겠습니까?"); scanf("%d",&row); // 행의 수를 입력 받는다. length = ( int** )malloc( sizeof( int* ) * row ); // 동적할당 for(i=0;i
- Total
- Today
- Yesterday
- 선 없이
- docker
- insertion
- 링크드리스트
- 빌드 세팅
- call back
- 안드로이드
- sort
- 정렬
- 과거 버전 사용
- setDoInput
- elasticsearch
- react-native
- PoolingHttpClientConnectionManager
- 개발 설정
- Independentsoft
- Stack
- springboot
- 443
- array
- 스머핑
- code push
- 암호
- LinkedList
- Windows 서비스 등록
- 그라파나
- Queue
- 젠킨스
- Gradle
- 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 |