网格布局的标签名称是()
A. TableLayout
B. GridLayout
C. TabLayout
D. ConstraintLayout
AndroidUI开发中,设置线性布局为水平显示需修改的属性是()
A. android:orientation="vertical"
B. android:orientation="horizontal"
C. android:layout_centerHorizontal="true"
D. android:layout_centerVertical="true"
线性布局中可以通过()属性来控制控件所占比例
A. android:orientation
B. android:weight
C. android:height
D. android:width
线性布局中关于layout_weight属性说法错误的是
A. 该属性可以控制控件所占比例
B. 在垂直的线性布局中,使用layout_weight必须将布局中的控件layout_height属性设置为0
C. 在水平的线性布局中,使用layout_weight不能将布局的layout_width设置为wrap_content,否则layout_weigth不起作用
D. 在线性布局中,如果一个控件设定了layout_width=”0dp”,并且没有设定layout_weight属性,则该控件不显示