Skip to content

Commit

Permalink
corrected readme and javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
fredgrott committed Sep 14, 2010
1 parent 0341290 commit c0fb094
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
1 change: 1 addition & 0 deletions local.properties
@@ -0,0 +1 @@
sdk.dir=/home/fredgrott/opt/android/android-sdk-linux_86_mine
5 changes: 4 additions & 1 deletion readme.markdown
@@ -1,4 +1,4 @@
![AndCustomTitle(http://github.com/shareme/andcustomtitle/raw/master/screenshots/andcustomtitleicon.png)
![AndCustomTitle](http://github.com/shareme/andcustomtitle/raw/master/screenshots/andcustomtitleicon.png)
# Project Name

AndCustomTitle uses themes and extended Window features of Android to customize
Expand Down Expand Up @@ -38,6 +38,9 @@ http://www.apache.org/licenses/LICENSE-2.0.html
You can download the source and re-use or you can also download the binary to
see it at work in your android device.

[AndCustomTitle APK via QR](http://github.com/downloads/shareme/AndCustomTitle/AndCustomTitle.apk/qr_code)
[AndCustomTitle APK via http](http://github.com/shareme/andcustomtitle/raw/master/screenshots/AndCustomTitle.apk)

# Credits

# Feedback
Expand Down
17 changes: 13 additions & 4 deletions src/com/mobilebytes/andcustomtitle/Splash.java
@@ -1,12 +1,12 @@
/*******************************************************************************
* Copyright 2010 fredgrott
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Expand Down Expand Up @@ -49,9 +49,18 @@ public void onCreate(Bundle icicle) {
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.splashscreen);

/*
/**
* New Handler to start the Menu-Activity and close this Splash-Screen
* after some seconds.
*
* An android.os.Handler.Handler is used to post a new Intent
* that that will than be triggered by setting SplashActivity context
* to SplasHactivity.this.startActivity(mainIntent); as delayed
* Handler post.
*
* We declare a new Runnable() as we do not have a current thread to
* associate with the Handler() que being setup.
*
*/
new Handler().postDelayed(new Runnable() {
public void run() {
Expand Down

0 comments on commit c0fb094

Please sign in to comment.