• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. G

    Apps ProgressBar problem?

    Hi all I'm having problem displaying my progressbar. It's suppose to show up when I download a file inside a WebView. I'd appreciate any help here. XML <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"...
  2. G

    Apps ImageButton, onkeydown and picture?

    Hi all, I have a Dialpad in which there are multiple buttons. Whenever a button is clicked a sounds plays and the background of the imagebutton is changed. For this I'm using ImageButton zero = (ImageButton) findViewById(R.id.btnZero); zero.setOnClickListener(new OnClickListener() {...
  3. G

    Apps Playing sound on button click?

    Hey all, I'm trying to play a soundclip when ever a user clicks an imagebutton on the screen. It works fine on the "physical keyboard" of the phone but I can't seem to get it to work when a user clicks on the screen. I get the following message: The method create(Context, int) in the type...
  4. G

    Apps Setting shadow on text?

    Hi all, I'm wondering how to set shadow on text ? I have this part I want to be shadowed... paint.setColor(Color.BLACK); paint.setTextSize(55); paint.setFakeBoldText(false); paint.setShadowLayer(1, 0, 0, Color.BLACK); //This only shadows my whole view... canvas.drawText(dateDayText, 50, 100...
  5. G

    Apps Date formatted text on bitmap?

    Hey all, I'm wondering how to format a date to that it will be shown as following: January 23 Saturday. I want it to be displayed on a bitmap. I've been able to draw up the bitmap, which looks like this: http://img692.imageshack.us/img692/9821/kalenderblad.png So I'd want to place January on...