已采纳回答 / qq_自由飞翔_1
不是,需要在Manifest.xml中<activity ></activity>之间添加android:theme="@android:style/Theme"然后图片就能显示了
2016-04-10
LayoutInflater inflater=LayoutInflater.from(getApplicationContext());
View view=inflater.inflate(R.layout.toast_layout,null);
Toast toast1=new Toast(getApplicationContext());
toast1.setView(view);
toast1.show();
View view=inflater.inflate(R.layout.toast_layout,null);
Toast toast1=new Toast(getApplicationContext());
toast1.setView(view);
toast1.show();
2016-04-03