引用:http://wang-peng1.iteye.com/blog/922730
</TableRow>
<View android:id="@+id/someidvalue"
android:layout_height="1dip"
android:background="#FF909090" />
AI 代码解读
View myView = (View)findViewById(R.id.someidvalue)
AI 代码解读
myView.setMinimumHeight(height) 或者
myView.setLayoutParams(new ViewGroup.LayoutParam(width, height))
AI 代码解读