It seems that Android has a default splash screen. I didn t make any splash screen but every time I open my application, a splash screen appears. The title bar of my splash screen contains a string which is the name of my application. It also uses the same background as what I ve set on my application.
为什么我的申请显示有点闪?? 难道这是安乐吗? 我检查了其他人开发的其他申请,没有刀切。
我如何去掉我间谍屏幕标题栏上的插 the? 我怎么能够改变我的猛烈屏幕的背景,同时又不影响我其他活动的背景?
我第一次活动的样本:
public void onCreate(Bundle savedInstanceState)
{
super.onCreate();
setContentView(R.layout.main);
//initialize variables
txtView1 = (TextView)this.findViewById(R.id.txtView1);
txtView2 = (TextView)this.findViewById(R.id.txtView2);
...
//register broadcast receiver
...
}
public void onResume()
{
super.onResume();
//read bundle if a bundle exists
...
}