FrameLayout 썸네일형 리스트형 [안드로이드] xml 없이 직접 코딩하기 순서 없이 그냥 막 넣어 놨씁니다. 필요한 것들만 쓰면 됨. LinearLayout layout = new LinearLayout(getApplicationContext()); layout.setOrientation(LinearLayout.VERTICAL); layout.setBackgroundColor(Color.WHITE); LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams( LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.FILL_PARENT); layoutParams.setMargins(0,0,0,0); layoutParams.weight = 1.0f; .. 더보기 [안드로이드] xml없이 layout, button, text 설정해보자! LinearLayout layout = new LinearLayout(getApplicationContext());// 리니어 레이아웃(뼈대 1) layout.setOrientation(LinearLayout.VERTICAL); // 리니어 레이아웃 자식붙이기 (뼈대2) LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams( LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.FILL_PARENT); layoutParams.setMargins(0,0,0,0); layoutParams.weight = 1.0f; mGallery.setIsGalleryCircular(fal.. 더보기 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" > style="?android:attr/progressBarStyleLarge" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical|center_horizontal.. 더보기 이전 1 다음