Android change layout dynamically

自作多情 提交于 2019-12-28 03:38:50

问题


I have situation where I want to change layout of activity after 3 seconds. Ho can I do that? For example application starts with splashscreen that will run for 3 seconds then automatically switch layout to application's first screen layout. This should happen in the same activity, any ideas?

Thanks


回答1:


I did this using only one xml layout. I just put an extra RelativeLayout in it that represents my intro screen then I use a fadeOut Animation on it and then call .setVisibility(View.GONE).

This is part of my main.xml layout file

<RelativeLayout
        android:id="@+id/introLayout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
      android:background="#FFFFFF"
    >

        <ImageView
        android:id="@+id/logoImg"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:src="@drawable/logo">
        </ImageView>
    </RelativeLayout>

Then inside my activity I have this:

introLayout = (RelativeLayout) findViewById(R.id.introLayout);
Animation fadeOutAnim = AnimationUtils.loadAnimation(MyActivity.this, R.anim.fadeout);
introLayout.startAnimation(fadeOutAnim);
introLayout.setVisibility(View.GONE);

You could make this run after 3 seconds by putting the startAnimation(), and the setVisibility inside of a runnable and using postDelayed() as markus mentioned. Do consider doing some work while this intro layout is on the screen though, so its not just a 3 second delay for the user. Perhaps check to see if the running version of the application is the current version or not.

EDIT: You'll need to add the fadout.xml file to /res/anim/ (create the anim directory if it doesn't exist). Here is an example.

fadeout.xml

<?xml version="1.0" encoding="utf-8"?>

<alpha xmlns:android="http://schemas.android.com/apk/res/android"
       android:interpolator="@android:anim/accelerate_interpolator"
       android:fromAlpha="1.0" android:toAlpha="0.0" android:duration="700" 
       android:fillAfter="true"/>



回答2:


Just use the ViewSwitcher,using this one can switch between any number of layouts within the application without having to do any setContentView.




回答3:


maybe you could use a postDelayed()-call to execute a runnable that will load a new xml file by calling setContentView(R.xml.anotherxml).




回答4:


This leaves me to add to adnorid's post, that ViewSwitcher itself is only able to switch between 2 layouts/views. This is simply because it's hardcoded to only 2 layouts/views without deeper meaning, as far as i know. So i built my own MultipleViewSwitcher aka MVS, base on the original ViewSwitcher.java from android source. The only changes that had to be made are:

  1. Provide the MVS with own
    • boolean mFirstTime and
    • int mWhichChild
  2. Correct hardcoded into dynamic handling of an arbitrary number of views in functions
    • addView(...)
    • getNextView()
    • reset()

This can all be done in MultipleViewSwitcher.java alone and works like a charm.

I came accross a bunch of stuff like that where the android sources could be made much more powerful with, many times, near-no-brainer-edits. I'd like to know why that is, but that's not for this thread here.

cheers!



来源:https://stackoverflow.com/questions/4570236/android-change-layout-dynamically

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!