在Activity的onCreate()方法中,加载布局资源文件的方法是()
A: setTheme()
B: setContentView()
C: setView()
D: setGroupView()
A: setTheme()
B: setContentView()
C: setView()
D: setGroupView()
B
举一反三
- 下列选项中,用于在Activity中加载布局资源文件的方法是()。 A: setTheme() B: setContentView() C: setView() D: setGroupView()
- 在 Activity 的onCreate()方法中,加载布局资源文件的方法是( )。
- 在Activity中,可以使用setContentView( )方法,确定加载哪一个布局文件
- Activity中加载布局的方法是setContentView()方法?
- Fragment的生命周期方法中,加载布局的是哪个方法( ) A: onCreateView() B: setContentView() C: onCreate() D: onLayout()
内容
- 0
在Activity中使用()JAVA 代码来显示XML中文件的布局。 A: setContentView(R.layout.activity_main) B: View(R.layout.activity_main) C: setContentView() D: setView(R.layout.activity_main)
- 1
在Android中,创建Activity时,首先需要继承Activity类,然后,需要重写onCreate()方法,并且在该方法中调用()方法设置要显示的视图。 A: setContentView() B: makeView() C: getContentView() D: setView()
- 2
在Activity代码中同样也可以引用自定义主题,只需要在Activity类onCreate()方法内添加setTheme()方法即可。( )
- 3
在onCreate()方法中,通过setContentView()方法把自定义对话框的布局显示出来。
- 4
关于XML布局文件在java代码中被引用的说明中,不正确的是( )? A: 在Activity中,使用findViewById()方法,获得指定id的视图元素 B: 在Activity中,使用R.drawable-system.***方式引用Android系统所提供的图片资源 C: 在Activity中,使用setContentView()方法,确定加载哪一个布局文件 D: 使用View类的findViewById()方法,获得当前View对象中的某一个视图元素