Overlay an activity on another activity OR overlay a view over another

后端 未结 4 731
挽巷
挽巷 2020-12-12 20:22

I have 2 classes, FirstActivity and SecondActivity.

First Activity

Intent intent=new Intent(getApplicationContext(),SecondActivity.class);
startActiv         


        
4条回答
  •  天涯浪人
    2020-12-12 20:49

    In manifest file declare the secondactivity activity like this. android:theme="@android:style/Theme.Dialog".then simply call the secondactivity from firstactivity from your code.

     
                    
                        
        
                        
                    
                
                
                    
                        
        
                        
                    
                
    

    Second Activity xml file.you can design as your wish but for reference i have posted this.the key concept is in manifestfile (ie) how to define your secondactivity in manifest

        
        
            
        
            

提交回复
热议问题