-
8-19과거...../개발일지 2012. 8. 19. 21:16
이코드 찾느라 예전에 한참 걸렸다...~~~ ㅜㅠ
자동적으로 사이즈를 조정해준다 (팝업이나 ~~등등에서 edittext사용시)
getWindow().setSoftInputMode(android.view.WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
재생중인음악을 pause되있을때 다시 실행하라는 인텐트
Intent i = new Intent("com.android.music.musicservicecommand");
i.putExtra("command", "togglepause");
mContext.sendBroadcast(i);
재생중인 음악을 pause시키라는 인텐트
Intent i = new Intent( "com.android.music.musicservicecommand" );
i.putExtra( "command" , "pause");
mContext.sendBroadcast(i);