1、制作一张启动图片splash.png,放置在res->drawable-hdpi文件夹中。
2、新建布局文件splash.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/splash" >灶液
<TextView
android:id="@+id/versionNumber"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="26dp"
android:layout_marginRight="52dp"
android:text="version 1.0"
android:textColor="" />
</RelativeLayout>
这里我们把上一步制作的图片作为启动界面的背景图,然后在界面底部枣神显示当前程序的版本号。
3、新建SplashActivity,在Oncreate中添加以下代码:
PackageManager pm = getPackageManager()
try {
PackageInfo pi = pm.getPackageInfo("com.lyt.android", 0)
TextView versionNumber = (TextView) findViewById(R.id.versionNumber)
versionNumber.setText("Version " + pi.versionName)
} catch (NameNotFoundException e) {
e.printStackTrace()
}
new Handler().postDelayed(new Runnable(){
@Override
public void run() {
Intent intent = new Intent(SplashActivity.this,SplashScreenActivity.class)
startActivity(intent)
SplashActivity.this.finish()
}
}, 2500)
4、 修改Manifest文件,将启动界面Activity改为默认启动,并且设置凳辩亏标题栏不可见。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.sinaweibo"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".MainActivity1"
android:label="@string/title_activity_main_activity1" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
这样打开应用后等待2.5秒就进入第二个activity MainActivity了。
Form1.Visible = True换蔽贺
Form1.Show
Picture1.Picture = LoadPicture("d:\科技创新扒并尺\春高1.jpg")
放到第一段中
跟着雨林木风U盘启动制作工具www.ylmfu.com的方法来吧!第一步:建立自己的开机画面图片要求:图片取名为Boot.bmp(注意:文件名和扩展名都不能改变)大小640*480,16色的bmp位图,保存在系统盘的windows目录下。
建议:Photoshop中新建一个大小640*480全黑的图层做背景,然后将自己喜欢的图片放到黑色的图层上。图片模式改为索引。保存时选择16色(即盯谈4位)bmp图片。大则胡保存在windows目录下。滚拦
第二步:用记事本打开C:Boot.ini,找到Windows XP启动项所在行,在末尾处加入
/bootlogo /noguiboot
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)