我在打开应用程序时尝试了很多方法来获取启动屏幕,但无法像链接的 android 移动应用程序主屏幕一样。这里我需要在第一张幻灯片中显示大图像的一部分,然后在 2 秒后它会自动移动从右到左并显示带有文本和可点击按钮的图像的第二部分。如何实现它请帮助我。
这是移动应用程序中的链接:https ://play.google.com/store/apps/details?id=com.linkedin.android&hl=en
我试过了,但没有得到我想要的
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.first);
//display the logo during 2 seconds,
new CountDownTimer(2*1000,1000){
@Override
public void onTick(long millisUntilFinished){}
@Override
public void onFinish(){
//set the new Content of your activity
YourActivity.this.setContentView(R.layout.second);
}
}.start();
}