개발도구 썸네일형 리스트형 TableLayout http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > android:text="수학" android:padding="10px" /> android:text="영어" android:padding="10px" /> android:text="국어" android:padding="10px" /> android:text="88" android:padding="10px" /> android:text="22" androi.. 더보기 RelativeLayout RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" > android:id="@+id/chulsoo" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="20px" android:textSize="15pt" android:text="철수" /> android:id="@+id/younghee" android:l.. 더보기 Android intent get 값 받아 오기 if (intent != null) { Bundle b = intent.getExtras(); if (b == null) { } else { Object pFeed = b.get("feed"); position = b.getInt("position"); 더보기 Android Log 문자, 숫자 찍어보기! Log.v("position", Integer.toString(currentNum)); // 숫자를 찍을때 Log.v("type",getType()); // 문자를 찍을때 더보기 이전 1 ··· 42 43 44 45 다음