반응형

Url에 있는 사진을 내 앱에 뿌려줄 때, Bitmap으로 변환하는 함수.

 * 주의할점. bitmap 변환 시 out of memory 주의. 

 

public static Bitmap getBitmap(String urlpath) {
        Bitmap bm = null;
        try {
         URL url = new URL(urlpath);
            URLConnection conn = url.openConnection();
            conn.connect();
            BufferedInputStream bis = 
                               new BufferedInputStream(conn.getInputStream());
            bm = BitmapFactory.decodeStream(bis);
            bis.close();
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            if (httpclient != null) {
                httpclient.close();
            }
        }
        return bm;
    }


반응형
,
반응형

 

아래의 함수를 만든 다음 boolean값으로 return 받아서 처리하면 됨.

 

public boolean isConnectingToInternet(){
        ConnectivityManager connectivity = (ConnectivityManager) 

    _context.getSystemService(Context.CONNECTIVITY_SERVICE);

          if (connectivity != null) 
          {
              NetworkInfo[] info = connectivity.getAllNetworkInfo();
              if (info != null) 
                  for (int i = 0; i < info.length; i++) 
                      if (info[i].getState() == NetworkInfo.State.CONNECTED)
                      {
                          return true;
                      }
          }
          return false;
    }

반응형
,
반응형

EditText 클릭 시 키보드 보이고, 다시 한번 클릭하면 사라지게 구현하는 코드.

 

 

 

boolean keyboardShow = true;
InputMethodManager imm = (InputMethodManager) 

                                       getSystemService(INPUT_METHOD_SERVICE);
if(keyboardShow){
    imm.showSoftInputFromInputMethod(getCurrentFocus().getWindowToken()0);
    keyboardShow = false;
}else{
    imm.hideSoftInputFromWindow(getCurrentFocus().getWindowToken()0);
    keyboardShow = true;
}

반응형
,