Guns'n'Glory Heroes

Posted by Unknown Kamis, 24 Januari 2013 0 komentar
Sharpen the axe, polish your armor and ready your guns! It's time to fight for glory, honor and gold once more! Guns'n'Glory is back!Features:✔Newest entry in the popular Guns’n’Glory series✔Epic fantasy defense action with Elves and Dwarves✔Control 3 mighty heroes in their battle against the Orcs✔Use and improve your 12 powerful combat abilities✔Journey into forests, swamps and snowy mountains in...

Baca Selengkapnya ....

Spinners in Android

Posted by Unknown 0 komentar
The Android Spinner Control is definitely the equivalent of the drop-down selector . By making use of spinner control you basically obtain the capability to choose from a list without taking up all of the display screen space of a ListView.Spinners provide a quick way to select one value from a set. In the default state, a spinner shows its currently selected value. Touching the spinner displays...

Baca Selengkapnya ....

Show and Resume Android Soft-Keyboard

Posted by Unknown Rabu, 23 Januari 2013 0 komentar
Code to show keyboard:InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);imm.showSoftInput(yourEditText,InputMethodManager.SHOW_IMPLICIT); Code resume keyboard :InputMethodManager imm = (InputMethodManager)gettSystemService(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(yourEditText.getWindowToken(), ...

Baca Selengkapnya ....

Blinking TextView - Two Methods

Posted by Unknown 0 komentar
METHOD 1 private void blink(){ final Handler handler = new Handler(); new Thread(new Runnable() { public void run() { int timeToBlink = 600; //in milissegunds try { Thread.sleep(timeToBlink); }catch (Exception e) { }handler.post(new...

Baca Selengkapnya ....

Creating an Activity as a Dialog Box

Posted by Unknown 0 komentar
In Android ManifestFile :<activity android:name=".DialogActivity" android:theme="@android:style/Theme.Dialog"> </activity> ...

Baca Selengkapnya ....

Calling a Service from Activity in Android

Posted by Unknown 0 komentar
This is a service class:public class serv extends Service { private static final String TAG = "MyService"; AlertDialog alertDialog @Override public IBinder onBind(Intent intent) { // TODO Auto-generated method stub return null; } public void onCreate() { Toast.makeText(getApplicationContext(), "My Service Created",Toast.LENGTH_LONG).show(); } ...

Baca Selengkapnya ....

Customize The Title Bar in Android

Posted by Unknown 0 komentar
xml for custom title bar:< ?xml version="1.0" encoding="utf-8"?> < LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/titlebar> < TextView style="@style/MyRedTextAppearance" android:padding="7dp" android:id="@+id/txtvew_title" ...

Baca Selengkapnya ....

How to use RadioButtonGroup in Android?

Posted by Unknown 0 komentar
in xml page:< ?xml version="1.0" encoding="utf-8"?> < LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > < TextView android:id="@+id/tv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Which...

Baca Selengkapnya ....

Option Menu in Android

Posted by Unknown Kamis, 17 Januari 2013 0 komentar
menu.xml :< ?xml version="1.0" encoding="utf-8"?> < menu xmlns:android="http://schemas.android.com/apk/res/android"> < item android:id="@+id/item1" android:title="Option 1" android:icon="@android:drawable/ic_menu_compass"/> < item android:id="@+id/item2" android:title="Option 2" android:icon="@android:drawable/ic_menu_week"/>...

Baca Selengkapnya ....

ContextMenu in Android

Posted by Unknown 0 komentar
Long click on the button to open the menu.in java class:public class ContextmenuActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); Button b=(Button)findViewById(R.id.button1); registerForContextMenu(b);...

Baca Selengkapnya ....

Custom AlertBox in Android

Posted by Unknown Rabu, 16 Januari 2013 0 komentar
in main.xml file:< ?xml version="1.0" encoding="utf-8"?>< LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > < Button android:id="@+id/button1" android:layout_width="120dp" android:layout_height="wrap_content" android:text="Button"...

Baca Selengkapnya ....

Vertical Text in Xml in Android

Posted by Unknown Selasa, 15 Januari 2013 0 komentar
A simple way is to insert a \n after each character, and make sure that the the height is set to fill_parent. < TextView android:layout_width="wrap_content" android:layout_height="fill_parent" android:text="h\ne\nl\nl\no\n w\no\nr\nl\nd" /> ...

Baca Selengkapnya ....

Frame by Frame Animation in Android

Posted by Unknown 0 komentar
Call a new xml file which includes the frames that are to be loaded:< ?xml version="1.0" encoding="utf-8"?> < animation-list android:oneshot="false" xmlns:android="http://schemas.android.com/apk/res/android"> < item android:drawable="@drawable/frame_above95_1" android:duration="30"/> < item android:drawable="@drawable/frame_above95_2" android:duration="30"/> <...

Baca Selengkapnya ....

Download an Image from Url and Display it in a ImageView

Posted by Unknown 0 komentar
Bitmap bmImg; ImageView img1;@Overrideprotected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); setContentView(R.layout.sending_card); img1=(ImageView) findViewById(R.id.imageView1); String url="http://i.123g.us/c/efeb_valen_happy/card/107397.gif"; downloadFile(url); }void downloadFile(String fileUrl){...

Baca Selengkapnya ....

Read from Asset and Write to a TextView

Posted by Unknown Jumat, 11 Januari 2013 0 komentar
Code for reading from a text file in asset folder to a textview:public class Readfile extends Activity { String path; ArrayList data = new ArrayList(); @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); path = getResources().getString(R.string.directory1); String[] data1 = null;...

Baca Selengkapnya ....

Swipe Image Viewer in Android

Posted by Unknown 0 komentar
See more basics on Android along with interview questions public class MainActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); ViewPager viewPager = (ViewPager)findViewById(R.id.view_pager); ImagePagerAdapter adapter = new ImagePagerAdapter(); viewPager.setAdapter(adapter);...

Baca Selengkapnya ....

Implementing Share Intent in Android

Posted by Unknown 0 komentar
Create a sharing button and inside the listen for button click call the share intentIntent sharingIntent = newIntent(android.content.Intent.ACTION_SEND); sharingIntent.setType("text/plain"); String shareBody = "Insert the share content body"; sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,"Insert Subject Here"); sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody);...

Baca Selengkapnya ....

Showing Selected Grid Image in New Activity (Full Screen)

Posted by Unknown Selasa, 08 Januari 2013 0 komentar
in main java class: gridView = (GridView) findViewById(R.id.gridView1); gridView.setAdapter(new ImageAdapter(this)); gridView.setOnItemClickListener(new OnItemClickListener() { public void onItemClick(AdapterView parent,View v,int position,long id) { System.out.println("====>>"+position); ...

Baca Selengkapnya ....

Copying an Array and Sorting it in Corona

Posted by Unknown 0 komentar
copyarray = table.copy( randomArray) local function compare( a, b ) return a < b end table.sort( copyarray, compare...

Baca Selengkapnya ....

Function to Generate a Set of Random Numbers in Corona

Posted by Unknown 0 komentar
Call this function to generate a set of five random numbers (maxRandom)...local function generaterandom() local maxRandom = 5 for m = 1, randCount do randomArray[m]=-100 end local i = 1 while irandcount+1 do local randNum = math.random (1, maxRandom) local flagNew = false for j = 1 , randCount do ...

Baca Selengkapnya ....

Disabling the Touch of an Activity

Posted by Unknown Senin, 07 Januari 2013 0 komentar
On a button click we are creating the same class as a dialog so that the touch is not receivedpublic class MainActivity extends Activity { Dialog overlayDialog; EditText edt; Button bt; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); edt=(EditText)findViewById(R.id.editText1);...

Baca Selengkapnya ....

Marquee Text in Android

Posted by Unknown 0 komentar
in xml file: < TextView android:id="@+id/MarqueeText" android:layout_width="wrap_content" android:marqueeRepeatLimit="marquee_forever" android:layout_height="wrap_content" android:ellipsize="marquee" android:focusable="true" android:focusableInTouchMode="true" android:freezesText="true" android:paddingLeft="15dip" android:paddingRight="15dip"...

Baca Selengkapnya ....

Passing Images between Activities in Android

Posted by Unknown 0 komentar
in First Activity: Intent intent=new Intent(FirstClass.this, SecondClass.class); Bundle bundle=new Bundle(); bundle.putInt("image",R.drawable.ic_launcher); intent.putExtras(bundle); startActivity(intent); in Second Acticity: Bundle bundle=this.getIntent().getExtras(); int pic=bundle.getInt("image"); v.setImageResource(pic); another method: in First Activity: Drawable drawable=imgv.getDrawable();...

Baca Selengkapnya ....

Custom GridView in Android

Posted by Unknown 0 komentar
in xml file: < ?xml version="1.0" encoding="utf-8"?> < LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > < GridView android:id="@+id/gridView1" android:numColumns="auto_fit" android:gravity="center" android:columnWidth="50dp" android:stretchMode="columnWidth"...

Baca Selengkapnya ....

GridView in Android

Posted by Unknown 0 komentar
in xml file:< pre class="brush: java"< < ?xml version="1.0" encoding="utf-8"?> < LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > < GridView android:id="@+id/gridView1" android:numColumns="auto_fit" android:gravity="center" android:columnWidth="50dp"...

Baca Selengkapnya ....
Categories: , , , , , ,

Creating A Customized ListView in Android

Posted by Unknown Jumat, 04 Januari 2013 0 komentar
Listview is simply a group of view that displays a list of scrolling items. "Adapters" are used to insert list items to the list.By default we are able to provide only text as list items.In order to insert other attributes make a customized listview. Copy or download this javacode and try yourself. Also see here :Android – Bullets in ListViewListView in Alphabetic Order in ANDROIDSingle Selection...

Baca Selengkapnya ....

Simple ListView in Android

Posted by Unknown 0 komentar
xml page:eazy_list< 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" > < ListView android:id="@android:id/list" android:layout_width="fill_parent" android:layout_height="wrap_content"> < /ListView> < /RelativeLayout>...

Baca Selengkapnya ....

Global IT spending to reach $3.7 trillion in 2013: Gartner

Posted by Unknown Kamis, 03 Januari 2013 0 komentar
 Worldwide IT spending is projected to reach $3.73 trillion in 2013, a 4.2 percent increase from $3.58 trillion in 2012, research firm Gartner Thursday said.The 2013 outlook for IT spending growth in US dollars has been revised upward from 3.8 percent in the Q3 2012 forecast, Gartner said in a statement.Much of this spending increase is the result from projected gains in the value of foreign...

Baca Selengkapnya ....
Categories: , ,

Getting the Number of Children in a Group (Size)

Posted by Unknown 0 komentar
Sample code to get the size of groups in corona : for i=1, group.numChildren do local child = group[i] local description = (child.isVisible and "visible") or "not visible" print( "child["..i.."] is " .. description ) end...

Baca Selengkapnya ....

Working with images in Corona

Posted by Unknown 0 komentar
Loading an Image :syntax: display.newImage( filename [, baseDirectory] [, left, top] )example:newImage = display.newImage( "image.png", 10, 20 ) myImage2 = display.newImage( "image.png" )Image Autoscaling:The default behavior of display.newImage() is to auto-scale large images.To control manually we can use boolean value.syntax:display.newImage( [parentGroup,] filename [, baseDirectory] [, x, y]...

Baca Selengkapnya ....

Display hello world without using semicolon

Posted by Unknown 0 komentar
#include<stdio.h> void main(){ if(printf("Hello world")){ }...

Baca Selengkapnya ....

Calculate Quadratic equation in c language

Posted by Unknown 0 komentar
Simple program to get Quadratic equation in c language #include< stdio.h> #include< math.h> int main(){ float a,b,c; float d,root1,root2; printf("Enter a, b and c of quadratic equation: "); scanf("%f%f%f",&a,&b,&c); d = b * b - 4 * a * c; if(d < 0){ printf("The roots are complex number.\n"); printf("The roots of quadratic equation are: "); printf("%.3f%+.3fi",-b/(2*a),sqrt(-d)/(2*a));...

Baca Selengkapnya ....

Long Integer Literal in java

Posted by Unknown 0 komentar
Simple program to explain Long integer literal in java.public class MainClass { public static void main(String[] a){ long longValue = 123456789L; System.out.println(longValue); } ...

Baca Selengkapnya ....

Tech Apple admits flaw in Do Not Disturb feature, will be fixed after 7 Jan

Posted by Unknown 0 komentar
 It’s now confirmed that Apple’s Do Not Disturb feature which is available for iPhone, iPod Touch and iPad on iOS 6 doesn’t work. The buzz first started on MacRumours, where users complained that the Do Not Disturb was working ahead of the time that they had set it for.Read more from herehttp://www.firstpost.com/tech/apple-admits-flaw-in-do-not-disturb-feature-will-be-fixed-after-7-jan-576...

Baca Selengkapnya ....
Categories: , , ,

Flipboard 1.9.17 apk for Galaxy Y, Galaxy Y Duos & lite, Galaxy Music.

Posted by Unknown Rabu, 02 Januari 2013 0 komentar
Hey Guys,This is the admin of this blog (mTz),First of all, I am really sorry for keeping this thing inactive since months, but I will finally be posting something here.I have also done a video, check it out below 0  (that's a bonus :P)if you can't watch the video, click here - https://www.youtube.com/watch?v=qFTZVMKPuYUNow here's a description - Flipboard brings together world news...

Baca Selengkapnya ....
Categories:
Postingan Lebih Baru » « Postingan Lama Beranda
Trik SEO Terbaru support Online Shop Baju Wanita - Original design by Bamz | Copyright of android populer.