A.android:collapseColunms=3B.android:shrinkColumns=2C.android:stretchColumns=0,3D.android:stretchColumns=1,4
单项选择题TableLayout共有3列,设置最后一列可以隐藏的语句()。
A.android:collapseColunms=3B.android:shrinkColumns=2C.android:stretchColumns=2D.android:collapseColunms=2
单项选择题TableLayout共有3列,设置最后一列可以收缩的语句()。
A.android:collapseColunms=3B.android:shrinkColumns=2C.android:stretchColumns=2D.android:shrinkColumns=3
单项选择题线性布局管理器组件水平方向放置()。
A.android:orientation=”vertical”B.android:orientation=”horizontal”C.android:layout_width=”match_parent”D.android:gravity=”horizontal”
单项选择题Activity中加载Fragment,首先执行的生命周期的方法是()。
A.onCreate()B.onAttach()C.onCreateView()D.onActivityCreated()
单项选择题设置RadioButton被默认选中的语句()。
A.android:id=trueB.android:name=trueC.android:checked=trueD.android:state=true
单项选择题ImageButton btn注册长按事件的语句正确的是()。
A.btn.setOnClickListener(this)B.btn.setOnLongClickListener(this)C.btn.setOnTouchListener(this)D.btn.addOnLongClickListener(this)
单项选择题使用属性设置单击Button执行的方法doclick()。
A.android:name=”button”B.android:id=”button”C.android:doclick=”button”D.android:onClick=”doclick”
单项选择题在先版本的AndroidStudio中,想要创建一个空的Activity需要选择()
A.EmptyB.BasicC.Fragement(Blank)
单项选择题想要在当前activity中显示一个Toast信息,语句正确的是()。
A.Toast.makeText(this,”注册成功”,200).show()B.Toast.makeText(this,”注册成功”,Toast.LENGTH_SHORT)C.Toast.makeText(“注册成功”).show()D.Toast.show(“注册成功”,this)
单项选择题在xml文件中使用字符串资源正确的方式()。
A.@String/titleB.r.string.titleC.R.string.titleD.@string/title