Android使用setContentView实现页面的转换效果
一提到Android中页面的切换,你是不是只想到了startActivity启动另一个Activity?
其实在Android中,可以直接利用setContentView达到类似页面转换效果的!实现思路如下:
- 在第一个Activity的布局中添加一个Button,实现点击事件
- 点击该Button,调用setContentView,传入第二个页面的Layout,第二个页面就显示出来了
- 第二个页面的布局中仍然有一个Button,仍然实现其点击事件
- 点击该Button,调用setContentView,传入第一个页面的Layout,第一个页面就显示回来了
因此,有点类似相互嵌套调用,源代码如下:
public class ExampleActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main_page_layout); Button button = findViewById(R.id.buttonGoToLayout2); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // 跳转到第二个页面 jumpToLayout2(); } }); } private void jumpToLayout2() { // 设置第二个页面的布局 setContentView(R.layout.layout2); Button button2 = findViewById(R.id.buttonGoToLayout1); button2.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // 在第二个页面中,点击Button,跳转到第一个页面 jumpToLayout1(); } }); } private void jumpToLayout1() { // 设置第一个页面d的布局 setContentView(R.layout.main_page_layout); Button button = findViewById(R.id.buttonGoToLayout2); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // 点击第一个页面的Button,跳转到第二个页面 jumpToLayout2(); } }); } }
两个布局文件如下:
1、第一个页面布局:main_page_layout.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_gravity="center"> <TextView android:id="@+id/textView1" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="This is Layout One" android:paddingTop="20dp" android:textSize="30sp"/> <Button android:text="Go to Layout Two" android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/buttonGoToLayout2" android:layout_marginTop="20dp" android:layout_below="@id/textView1"/> </RelativeLayout>
2、第二个页面布局:layout2.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@android:color/black" > <TextView android:id="@+id/textView2" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="This is Layout Two" android:paddingTop="20dp" android:textColor="@android:color/white" android:textSize="30sp"/> <Button android:text="Go to Layout One" android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/buttonGoToLayout1" android:layout_marginTop="20dp" android:layout_below="@id/textView2"/> </RelativeLayout>
通过setContentView实现页面切换,相比Activity切换有个特别的优点:
所有程序里的变量都存在相同的状态:类成员变量、类函数等,都可以在同一个Activity中直接获得,没有参数传递的问题。比如:
Layout1收集了用户输入的银行卡号码等付款信息,点击“下一步”进入Layout2显示订单信息,让用户确认,用户点击“确认”按钮后,进入Layout3进行付款的授权操作,整个过程没有变量的传递。
以上就是Android使用setContentView实现页面的转换效果的详细内容,更多关于Android 页面转换效果的资料请关注脚本之家其它相关文章!
相关文章
详解Android中Intent传递对象给Activity的方法
这篇文章主要介绍了Android中Intent传递对象给Activity的方法,文章中对Activity的生命周期等知识先作了简要的介绍,需要的朋友可以参考下2016-04-04Android 获取屏幕高度,标题高度,状态栏高度(实例代码)
getWindow().findViewById(Window.ID_ANDROID_CONTENT)这个方法获取到的view就是程序不包括标题栏的部分,然后就可以知道标题栏的高度了2013-11-11Android中使用imageviewswitcher 实现图片切换轮播导航的方法
ImageSwitcher是Android中控制图片展示效果的一个控件。本文给大家介绍Android中使用imageviewswitcher 实现图片切换轮播导航的方法,需要的朋友参考下吧2016-12-12Android中使用 AutoCompleteTextView 实现手机号格式化附带清空历史的操作
有个小伙伴遇到了这样一个问题,就是AutoCompleteTextView实现自动填充的功能。同时要具备手机格式化的功能。接下来通过本文给大家分享使用 AutoCompleteTextView 实现手机号格式化附带清空历史的操作方法,需要的朋友参考下2017-03-03Android IPC机制利用Messenger实现跨进程通信
这篇文章主要介绍了Android IPC机制中 Messager 实现跨进程通信的知识,对Android学习通信知识非常重要,需要的同学可以参考下2016-07-07
最新评论