A.可以在多个LinearLayout放置用于显示分割线的View,例如放一个ImageView组件,然后将其背景设为分割线的颜色或图形
B.在多个LinearLayout代码中,将不同的代码模块以按回车形式隔开
C.将不同的LinearLayout布局界面写在不同的布局代码中
D.不可能实现
正确答案:A
设置RelativeLayout的宽高:public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState)
setContentView(R.layout.grid_item)
relativeView=(RelativeLayout)findViewById(R.layout.grid_item)
new Handler().postDelayed(new Runnable(){
@Override
public void run(){
relativeView.setLayoutParams(new RelativeLayout.LayoutParams(100,200))
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)