2011-12-25 5 views

답변

6

width 대신 layout_width 속성을 설정해야합니다.

<CheckedTextView 
    android:id="@+id/myCheckedTextView" 
    android:layout_width="width_you_want_in_dp" 
    android:layout_height="wrap_content"/> 

당신은 또한이 같은 프로그램을 수행 할 수 있습니다이 도움이

myCheckedTextView.getLayoutParams().width = width_you_want_in_pixels; 

희망을!

관련 문제