首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

android从xml创造控件(按钮)或直接创建控件

2012-08-14 
android从xml创建控件(按钮)或直接创建控件android从xml创建控件根据xml创建view (res/layout 这个文件夹

android从xml创建控件(按钮)或直接创建控件
android从xml创建控件

根据xml创建view (res/layout 这个文件夹中的play_cartoon_exit.xml)
View viewxml=getLayoutInflater().inflate(R.layout.play_cartoon_exit,null);

xml中有个id为button的Button
private Button  button=(Button)findViewById(R.id.button)



直接创建控件
直接创建view
继承View的自定义view
public class ComicLivePlayerView extends View{
}

final ComicLivePlayerView view = new ComicLivePlayerView(this);

直接创建button
Button btnJump = new Button(this);

热点排行