android按钮一定要在.xml中实现吗,不在.xml中的时候要怎么去实现呢?
publicclassActivity17ActivityextendsActivity{/**Calledwhentheactivityisfirstcreated.*...
public class Activity17Activity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(new Look(this));
}
}
class Look extends View implements Runnable
{
}
我是要在类Look中实现一个按钮不是在.xml中实现!!!大神们帮帮啊!!! 展开
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(new Look(this));
}
}
class Look extends View implements Runnable
{
}
我是要在类Look中实现一个按钮不是在.xml中实现!!!大神们帮帮啊!!! 展开
3个回答
展开全部
在怎么样你必须得先有个容器 通常是 linearLayout RelativeLayout TableLayout等等
比如你先绑定了一个xml中的容器
LinearLayout ll=(LinearLayout)findViewById(R.id.your_layout);
这样在你的代码中就可以直接添加按钮了:
Button btn=new Button(this);
btn.setText("Hello world");
ll.addView(btn);
就行了
比如你先绑定了一个xml中的容器
LinearLayout ll=(LinearLayout)findViewById(R.id.your_layout);
这样在你的代码中就可以直接添加按钮了:
Button btn=new Button(this);
btn.setText("Hello world");
ll.addView(btn);
就行了
更多追问追答
追问
我都说过了不在.xml中实现了,你看我是在
setContentView(new Look(this));
追答
首先你要知道一点 你想要显示 必须得有activity。有activity,就会有
setContentView(R.layout.your_layout);最终所有的显示都必须和your_layout.xml是相关的。
activity的显示什么都是根据your_layout.xml来的。为了达到你的目的,其实很简单,你只要在
your_layout.xml里面定义一个layout,然后在你的.java文件里面进行绑定。
最后通过代码(是代码,而不是在xml中定义),你就可以添加按钮了。你想完全的不用.xml就想显示任何东西,那是不可能的。android中代码和显示本来就是独立的。
不知道解释的是不是你想要的。或者你说的不在.xml中的按钮是在是看不明白。
2012-07-04 · 知道合伙人软件行家
关注
展开全部
不需要啊
Button btn = new Button(this);
btn.setText("TestButton");
this.setContentView(btn);
Button btn = new Button(this);
btn.setText("TestButton");
this.setContentView(btn);
更多追问追答
追问
不行哦!!!
追答
??
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询