팝업 바깥레이어 클릭시 닫히지 않게 하기
1
2
3
4
5
6
7
8
9
10
    @Override
    public boolean onTouchEvent(MotionEvent event) {
        //바깥레이어 클릭시 안닫히게
        if(event.getAction()==MotionEvent.ACTION_OUTSIDE){
            return false;
        }
        return true;
    }
 
 
cs


타이틀바 없애기

1
2
3
    //타이틀바 없애기       
    requestWindowFeature(Window.FEATURE_NO_TITLE);
 
cs


사진파일을 갤러리에 추가하기

1
2
    //갤러리에 추가
    sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.fromFile(파일객체)));
cs


+ Recent posts