336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
/** Get Bitmap's Width **/
public static int getBitmapOfWidth( String fileName ){
try {
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(fileName, options);
return options.outWidth;
} catch(Exception e) {
return 0;
}
}
/** Get Bitmap's height **/
public static int getBitmapOfHeight( String fileName ){
try {
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(fileName, options);
return options.outHeight;
} catch(Exception e) {
return 0;
}
}
'나의 플랫폼 > 안드로이드' 카테고리의 다른 글
[Android] ConnectivityManager getNetworkInfo(int) deprecated (0) | 2016.05.16 |
---|---|
[Android] AlarmManager를 이용한 Schedule 관리 (11) | 2016.05.13 |
[Java] 최대 공약수 구하는 함수 (0) | 2016.05.13 |
[Java] 소숫점 자리 지정하기 (0) | 2016.05.13 |
[Android] RecyclerView 에서 Scroll 정보 형태 (2) | 2016.05.13 |