在开发过程中,点击应用跳转到主界面时,对于需要联网才能用的设备而言,需要作出设备是否联网的判断,并且根据是否联网来确定下一步的操作,
如果联网了,则直接从动画进入主界面,否则弹出一个对话框 AlertDialog,来选择是否进入设置界面,进行网络连接操作。下面是一个实例:
布局文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/splash"
android:scaleType="fitXY"
android:id="@+id/main_iv"/>
</LinearLayout>
anim文件夹下的动画文件:
<?xml version="1.0" encoding="utf-8"?>
<alpha
android:fromAlpha="0.2"
android:toAlpha=&