[android] findViewById casting bolierplate removal. android, findViewById casting bolierplate removal. @SuppressWarnings("unchecked")public final E findView (int id) { return (E) findViewById(id);} @Overridepublic void onCreate (Bundle savedInstanceState) { super.onCreate(savedInstanceState); TextView textView = findView(R.id.textview);Button button = findView(R.id.button);ImageView image = findView(R.id.imageview); myMethod( findView(R.id.imagev.. 2014. 4. 17. android 에서 gif 재생하기 - GifDrawable. ( Open Source LIbrary ) android 에서 gif 재생하기 - GifDrawable. ( Open Source LIbrary ) https://github.com/koral--/android-gif-drawable 안드로이드는 기본 GIF 파일을 자동으로 draw 하지 못한다. 하지만 이 GifDrawable open source 는 이를 지원한다. 이 녀석은 NDK 를 사용해서 frame 을 render 하기 때문에, 기존의 WebView 나 Movie class 를 이용하여 rendering 하는 것보다 훨씬 효율적이다. android gif, android 에서 gif 재생하기 - GifDrawable. ( Open Source LIbrary ), Draw, FRAME, Gif, gif 재생, gitdrawable, Mo.. 2014. 4. 16. [JNI] bitmap handling source code frame. JNI, bitmap handling source code frame. #include /* Header for class com_example_coloring_utils_FloodFillUtils */#include #include #define LOG_TAG "DEBUG"#define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG,LOG_TAG,__VA_ARGS__)#define LOGE(...) __android_log_print(ANDROID_LOG_ERROR,LOG_TAG,__VA_ARGS__) #ifndef _Included_com_example_coloring_utils_FloodFillUtils#define _Included_com_example_co.. 2014. 4. 16. [android] support v4 에 추가된 SwipeRefreshLayout. [android] support v4 에 추가된 SwipeRefreshLayout. http://antonioleiva.com/swiperefreshlayout/ SwipeRefreshLayout은 Android 에서 PullToRefresh pattern action 을 수행하기 좋은 container 이다.이 녀석은 scrollable 한 하나의 view 를 자식으로 가질 수 있는 ViewGroup 이다. PullToRefresh 가 되면 상단에 자동으로 indeterminate progress animation 이 보여진다.이 Animation 은 Google Now 에서 사용하는 progress style 과 비슷한다.Swipe Down action 에 대해서만 해당한다. setOnRefreshL.. 2014. 4. 15. [android] ellipsize="marquee" not working android, ellipsize="marquee" not working ellipsize="marquee" 를 만족시키기 위해선 우선. singleLine="true" 와 함께 TextView.setSelected( true ) 이 2가지를 함께 만족시켜야 한다. ellipsize, ellipsize="marquee", marquee, setselected, singleline, singleLine="true", TextView.setSelected( true ), [android] ellipsize="marquee" not working 2014. 4. 15. android:foreground 속성은 언제 쓰이는가? android:foreground 는 android:background 와 반대되는 개념이다. android:foreground 의 경우는 main contents 를 가리면 안 되기 때문에 보통 alpha 를 먹인 이미지나 색상 등을 사용하며,어떤 item 을 선택했을 때 background selector 와 같은 효과를 볼 수 있지만, 앞쪽(컨텐츠보다 z 축으로 우리 눈쪽에 가깝게)에서 press 된 상태를 보기 위해 보통 사용된다. 말인 즉슨, 만약 어떤 버튼을 클릭하는데, 그 버튼의 컨텐츠가 버튼의 거의 전부를 cover 하고 있다면,selector를 background 로 설정했을 때, 해당 버튼을 press 하면 해당 버튼이 눌렸는지 판단하기 어렵다.이 경우 selector 를 foregro.. 2014. 4. 14. [JNI] undefined reference to `__android_log_print' JNI, undefined reference to `__android_log_print' undefined reference to `__android_log_print' 위와 같은 reference error 가 나오면 아래의 것을 android.mk 에 넣어주면 된다. LOCAL_LDLIBS := -L$(SYSROOT)/usr/lib -llog Android.mk, JNI, L$(SYSROOT)/usr/lib -llog, LOCAL_LDLIBS, NDK, Reference Error, undefined reference to `__android_log_print', [JNI] undefined reference to `__android_log_print', __android_log_print 2014. 4. 14. [Android] Custom View 를 사용할 때 수동 inflate, merge, attribute setting 피하는 방법. [Android] Custom View 를 사용할 때 수동 inflate, merge, attribute setting 피하는 방법. http://trickyandroid.com/protip-inflating-layout-for-your-custom-view/ 보통의 Custom View 는 ViewGroup ( LinearLayout, RelativeLayout, FrameLayout 등 ) 을 상속하여, 여러가지 component 들을 가지고 있는다. 이 경우 보통은 최초 로딩시 inflate 를 통해서 layout 을 불러온다.이 때 root viewgroup 이 custom view 가 상속한 viewgroup 과 같다면, merge 를 사용하여 view hierarchy 를 조금 더 최적화 할 .. 2014. 4. 12. [JNI] undefined reference to AndroidBitmap JNI, undefined reference to AndroidBitmap "undefined reference to AndroidBitmap_getInfo""undefined reference to AndroidBitmap_lockPixels""undefined reference to AndroidBitmap_unlockPixels" 위와 같이 AndroidBitmap 에 관한 reference 를 찾을 수 없다는 메세지가 나오면..Android.mk 파일에 아래와 같이 reference 를 추가 해 주면 된다. LOCAL_LDFLAGS += -ljnigraphics androidbitmap, getinfo, JNI, ljnigraphics, local_ldflags, lockpixels, NDK, R.. 2014. 4. 12. 반응형 이전 1 ··· 46 47 48 49 50 51 52 ··· 125 다음