i++;
}
}
});
}
}
hey buddy.. use this logic its working on my system. for this u run
this code and i hope its working on your system.
On Mar 27, 9:25 pm, Gabriel wrote:
> It's not working Dixie. Can you put this code more clear?
>
> On 27 mar, 13:09,
use the even-odd logic.. like
int i=1;
button.onclick()
{
if(i%2==0)
{
///operation...
i++;
}
else
{
//operation
i++;
}
}
i think u got it...
i hope it works
-
Regards
Dixit Wadhwani
use this, this will definitely remove the TITLE from dialog box
dialog.requestWindowFeature(dialog.getWindow().FEATURE_NO_TITLE);
--
Regards
Dixit Wadhwani
On Mar 27, 12:32 am, Archit Jain wrote:
> Hi all,
>
> Is there a way, I can remove title from the default dialog box ?
>
> I am using follo
don't use this while writing your dialog box code--->>>
dialog.setTitle("Title name");
On Mar 27, 12:32 am, Archit Jain wrote:
> Hi all,
>
> Is there a way, I can remove title from the default dialog box ?
>
> I am using following code :
>
> Dialog alertDialog = new Dialog(getApplica
start the music service in each activity and stop it when you move to
the next activity by using following code--->.
MediaPlayer player;
player = MediaPlayer.create(this, R.raw.start);
player.setLooping(true); // Set looping
player.setVolume(100,100)
create the raw folder in the layout folder and put the music file and
use the following code
MediaPlayer player;
Intent msvc=new Intent(this,Music.class);
startService(msvc);
player = MediaPlayer.create(this, R.raw.se); // se is
the name of music file whic
hey NightGospel,
thnx...for this
On May 31, 4:02 pm, NightGospel wrote:
> Hi Dixit,
>
> You can put values to the intent by invoking Intent.putExtra() method
> and retrieve it by invoking Intent.getXXXExtra().
> For example,
> in one.java:
> Intent myIntent = new Intent(view.getContext(),two.cla
incorrect : setContentView.(R.layout.main_layout); in this .(dot) is a
mistake after setContentView
correct : setContentView(R.layout.main_layout);
On May 26, 10:00 pm, Oddin wrote:
> On the android developer
> page:http://developer.android.com/guide/topics/ui/declaring-layout.html
> Paragraph:
8 matches
Mail list logo