목록안드로이드 (401)
설.현.아빠
http://westwoodforever.blogspot.kr/2012/11/google-play-in-app-billing.html 안드로이드 인앱 결제 작업중에 나온 오류를 따로 정리해봅니다. 결제 요청을 하는 순간 '항목을 찾을 수 없습니다.' 오류가 나오고 확인을 누르면 바로 제대로 된 인앱 제품 정보가 나오는 증상이 있습니다. 이 에러는 Google Play Billing Library에 있는 Dungeons Sample를 연동해서 나온 오류입니다. Dungeons.java의 소스중 onClick 함수에서 Buy버튼을 클릭했을 때 mBillingService.requestPurchase를 처리하는 if, else if 문 문제입니다. 딱 보시면 mBillingService.requestPurch..
private void applyNewLineCharacter(TextView textView) { Paint paint = textView.getPaint(); String text = (String) textView.getText(); int frameWidth = mCtx.getResources().getDimensionPixelOffset(R.dimen.description_width); int startIndex = 0; int endIndex = paint.breakText(text , true, frameWidth, null); String save = text.substring(startIndex, endIndex); int lines = 1; while(true) { startIndex ..
http://androidtrainningcenter.blogspot.com/2012/03/android-listview-with-section-header.html
package lee.hyeontae; import com.google.android.maps.GeoPoint; import com.google.android.maps.MapActivity; import com.google.android.maps.MapView; import android.os.Bundle; public class MaptestActivity extends MapActivity { // Members Maptest mMapView; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); // Populate the ma..
http://dev.paran.com/2012/01/03/path-2-0-android-animation/
import android.app.*;import android.os.*;import android.view.*;import android.view.View.OnTouchListener;import android.widget.*;public class MultiTouchTest extends Activity implements OnTouchListener { StringBuilder builder = new StringBuilder(); TextView textView; float[] x = new float[10]; float[] y = new float[10]; boolean[] touched = new boolean[10]; private void update..
안드로이드 디바이스상에서 애플리케이션 데모를 할 때 사용해 볼 만한 유틸리티입니다. http://androidscreencast.googlecode.com/svn/trunk/AndroidScreencast/dist/androidscreencast.jnlp 더 좋은 유틸리티가 있으시면 댓글 달아주시면 반영하겠습니다. 아니면 진짜 좋은것을 한번 개발해 보는 것도 좋을 듯 합니다. 최대 품질을 위해선 타겟 디바이스의 해상도를 충분히 수용할 수 있는 수준으로 호스트 컴퓨터의 해상도를 높이신 후에 사용하세요. 위에서 다운로드한 애플리케이션 윈도우를 최대 크기로 해서 테스트하시면 깨끗한 화면 품질은 얻어집니다. (단지 화면전환 속도가 문제로 남지만요..~)