----------------------------------------------------------CODE--------------------------------------------------------------


ImageView line1 = (ImageView)mBase.findViewById(R.id.month_line1);


//상위 뷰가 <LinearLayout>이기 때문에 LinearLayout.LayoutParams을 사용한다
// mLine1.getLayoutParams(); == mLine1의 기존 레이아웃 파라미터를 가져온다.

LinearLayout.LayoutParams liControl1 = (LinearLayout.LayoutParams) mLine1.getLayoutParams();    

  liControl1.setMargins(0, height, 0, 0);    // liControl1객체로 width와 hight등 파라미터를 다 설정가능

  mLine1.setLayoutParams(liControl1);

   
----------------------------------------------------------XML--------------------------------------------------------------


<LinearLayout

        android:layout_width="match_parent"

        android:layout_height="match_parent"

        android:layout_marginTop="21dp"

        android:orientation="vertical" >

        <ImageView

            style="@style/sch_style_Img_MonthLine"

            android:layout_marginTop="1dp" />


        <ImageView

            android:id="@+id/month_line1"

            style="@style/sch_style_Img_MonthLine"

          />



    </LinearLayout>






728x90
반응형

+ Recent posts