본문 바로가기

분류 전체보기

이미지 와 이미지 사이 간격 없애기 버튼, 이미지 등등 모두 양테두리에 투명 간격이 존재한다. 그 간격을 없애주기 위해 마진 0으로 해보아도 되질 않는다. 정답은 : 마진을 -(마이너스) 값을 줄경우 벌어진 간격을 줄일수 있다.! 더보기
Layout 고급 http://schemas.android.com/apk/res/android"    android:orientation="vertical"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:id="@+id/framelayout"    >  더보기
AbsoulteLayout http://schemas.android.com/apk/res/android"    android:orientation="vertical"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    > 더보기
TableLayout http://schemas.android.com/apk/res/android"    android:orientation="vertical"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    >      android:text="수학"   android.. 더보기
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 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()); // 문자를 찍을때 더보기