View Facebook Popup Like Box
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript" language="javascript"> | |
function ccpop() | |
{ | |
document.getElementById("overlay").style.display = 'block'; | |
} | |
window.onload = ccpop; | |
</script> | |
<!--CodingCrazy.com Popup Like and Subscribtion Box--> | |
<style> | |
@import url(http://fonts.googleapis.com/css?family=Electrolize); |
View gist:aa47cb96a5f44c513774
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul> | |
<li><a href='#'>Main Menu One</a> | |
<ul class='sub-menu'> | |
<li><a href='#'>Your Sub Menu Item one</a></li> | |
<li><a href='#'>Your Sub Menu Item Two</a></li> | |
<li><a href='#'>Your Sub Menu Item Three</a></li> | |
<li><a href='#'>Your Sub Menu Item Four</a></li> | |
</ul> | |
</li> | |
<li><a href='#'>Main Menu Two</a> |
View MainActivity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.androidwebviewapp.karthik; | |
import android.app.ActionBar; | |
import android.app.Activity; | |
import android.content.Intent; | |
import android.os.Bundle; | |
import android.view.Menu; | |
import android.view.MenuItem; | |
import android.view.View; | |
import android.webkit.WebSettings; |
View Splash.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.androidwebviewapp.karthik; | |
import android.annotation.SuppressLint; | |
import android.annotation.TargetApi; | |
import android.app.ActionBar; | |
import android.app.Activity; | |
import android.content.Intent; | |
import android.os.Build; | |
import android.os.Bundle; |
View MyAppWebViewClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.androidwebviewapp.karthik; | |
import android.content.Intent; | |
import android.net.Uri; | |
import android.webkit.WebView; | |
import android.webkit.WebViewClient; | |
/** | |
* Created by Karthik's on 3/5/2015. | |
*/ |
View activity_splash.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<RelativeLayout 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" | |
android:background="@mipmap/vert_loading" | |
tools:context=".Splash" > | |
</RelativeLayout> |
View activity_main.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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" | |
android:orientation="vertical"> | |
<ProgressBar | |
android:id="@+id/progressBar1" | |
style="?android:attr/progressBarStyleSmall" |
OlderNewer