Sumsung Mobile Secret Code,Android Secret Code,Secret Code,Secret Code List, Mobile Secret Code, IMEI Code,
Android Mobile Secret Code You Don't know about the Secret Check Now.
seen from Azerbaijan
seen from Japan

seen from Yemen
seen from United Kingdom

seen from Canada
seen from China

seen from Egypt
seen from China

seen from Canada

seen from United Arab Emirates

seen from China
seen from Brazil

seen from United States
seen from United States
seen from China

seen from United States

seen from United States
seen from China

seen from United States
seen from China
Sumsung Mobile Secret Code,Android Secret Code,Secret Code,Secret Code List, Mobile Secret Code, IMEI Code,
Android Mobile Secret Code You Don't know about the Secret Check Now.
Webview test connection code android and sketchwere development
android.net.ConnectivityManager cm = (android.net.ConnectivityManager) this.getSystemService(android.content.Context.CONNECTIVITY_SERVICE); android.net.NetworkInfo activeNetwork = cm.getActiveNetworkInfo(); if (activeNetwork != null) { if (activeNetwork.getType() == android.net.ConnectivityManager.TYPE_WIFI) { text.setText("Wifi is active"); } else if (activeNetwork.getType() ==…
View On WordPress
Automatic refreshing banner ad in sketchwere
there are much more videos which are show tutorial for banner ad in sketchwere and explained the process like given below.
1. Add banner ad in your project.
2. in event section onadloaded event add add show block.
3. onadload failed event create new ad request.
But it’s not total wrong but it’s wrong for load and show banner ads. the banner no need to refresh for new ads and also no…
View On WordPress
Textview code - Design and animation in Java programming
Textview code – Design and animation in Java programming
Simple text is good for easily read and simple view but it’s not good in every site. Sometimes we build different types application and we personalized various types of design and much more. in this post i write the code for your project about textview and textview design.
Create textview
final TextView mytext = new TextView(ProjectinActivity.this); mytext.setText(“Your Text”);…
View On WordPress
Brightness - Code for screen brightness
Brightness – Code for screen brightness
Code
WindowManager.LayoutParams layout = getWindow().getAttributes(); layout.screenBrightness = 0.5F ; getWindow().setAttributes(layout);
Note
Brightness level 0.1 is 10% and 1.0 is 100%.
View On WordPress
Ripple touch effect
This code for effect on click like ripple. just copy this code and past on click place.
Code
android.graphics.drawable.RippleDrawable ripdr = new android.graphics.drawable.RippleDrawable(new android.content.res.ColorStateList(new int[][]{new int[]{}}, new int[]{ Color.GREEN}), new android.graphics.drawable.ColorDrawable(Color.WHITE), null); button1.setBackground(ripdr);
Can i use this code…
View On WordPress
Long press - toast massage
Long press – toast massage
sometime we noticed that when long press any content they create a toast massage and show details about self.
Today i explain code for long press toast massage action. look below.
Code
textview1.setOnLongClickListener(new View.OnLongClickListener() {
@Override public boolean onLongClick(View v) {
Toast.makeText(getApplicationContext(),”your massage“,Toast.LENGTH_LONG).show();
re…
View On WordPress
Textview blinking animation
Today I’m posting textview blinking code. Blink it means the textview show and hide and repeat this action fastly.
Code
Animation anim =new AlphaAnimation(0.0f,1.0f); anim.setDuration(50); anim.setStartOffset(20); anim.setRepeatMode(Animation.REVERSE); anim.setRepeatCount(Animation.INFINITE); text_id.startAnimation(anim);
Replace textview id with text_id
View On WordPress