[android-beginners] Re: Missing/Hidden/Dissappearing Button problem

2010-06-06 Thread Tollas
I have no idea why, but changing the file name to anything that
doesn't begin with the letter a seems to work. I had tried different
file names, but all of them began with a.
I don't have any idea why this would affect anything. I have other
files the same size (both in pixels and in kb) that begin with a
that work just fine.

I guess since as a user the file name doesn't matter, it's not that
big of a deal, but it would be nice to know why!

On Jun 5, 5:55 pm, Tollas tolla...@gmail.com wrote:
 Yes, I have tried that. Same result.
 I've also tried making it an ImageButton and ImageView with the same
 result.

 On Jun 5, 3:48 pm, Gubatron gubat...@gmail.com wrote:

  Did you try passing the drawable on the Button XML?

  ... android:background=@drawable/attack_any /

  or you can only obtain the drawable at runtime? (dynamic drawable)

  On May 28, 1:43 pm, Tollas tolla...@gmail.com wrote:

   Button
      android:id=@+id/attack_ability_button
      android:layout_width=52dp
      android:layout_height=52dp
      android:layout_x=10dp
      android:layout_y=70dp/

   final Button attack_ability_button =
   (Button)findViewById(R.id.attack_ability_button);
   attack_ability_button.setBackgroundDrawable(getResources().getDrawable(R.drawable.attack_any));

   My problem is that when I use the attack_any  drawable to create the
   button, it just isn't there.
   If I change to another image of the same size, the button shows up
   just fine.
   I've tried replacing the image file, renaming it, resizing it. Always
   with the same results.
   I tried using the attack_any drawable for another button and it
   disappears as well.
   I've also tried moving the button and changing its size, but the
   problem persists.
   I've even tried drawing the background in XML rather than java and it
   still will not show up.

   attack_any.png is a 60x60px image 1kb in size.

   Scroll View
   -Absolute Layout

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] Re: Missing/Hidden/Dissappearing Button problem

2010-06-06 Thread Tollas
And this also broke another image. Fixing that one by changing the
name broke a 3rd image. Fixing that broke a 4th. Changed all 4 image
names and now all work properly.

On Jun 6, 8:11 pm, Tollas tolla...@gmail.com wrote:
 I have no idea why, but changing the file name to anything that
 doesn't begin with the letter a seems to work. I had tried different
 file names, but all of them began with a.
 I don't have any idea why this would affect anything. I have other
 files the same size (both in pixels and in kb) that begin with a
 that work just fine.

 I guess since as a user the file name doesn't matter, it's not that
 big of a deal, but it would be nice to know why!

 On Jun 5, 5:55 pm, Tollas tolla...@gmail.com wrote:

  Yes, I have tried that. Same result.
  I've also tried making it an ImageButton and ImageView with the same
  result.

  On Jun 5, 3:48 pm, Gubatron gubat...@gmail.com wrote:

   Did you try passing the drawable on the Button XML?

   ... android:background=@drawable/attack_any /

   or you can only obtain the drawable at runtime? (dynamic drawable)

   On May 28, 1:43 pm, Tollas tolla...@gmail.com wrote:

Button
   android:id=@+id/attack_ability_button
   android:layout_width=52dp
   android:layout_height=52dp
   android:layout_x=10dp
   android:layout_y=70dp/

final Button attack_ability_button =
(Button)findViewById(R.id.attack_ability_button);
attack_ability_button.setBackgroundDrawable(getResources().getDrawable(R.drawable.attack_any));

My problem is that when I use the attack_any  drawable to create the
button, it just isn't there.
If I change to another image of the same size, the button shows up
just fine.
I've tried replacing the image file, renaming it, resizing it. Always
with the same results.
I tried using the attack_any drawable for another button and it
disappears as well.
I've also tried moving the button and changing its size, but the
problem persists.
I've even tried drawing the background in XML rather than java and it
still will not show up.

attack_any.png is a 60x60px image 1kb in size.

Scroll View
-Absolute Layout

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] Re: Missing/Hidden/Dissappearing Button problem

2010-06-05 Thread Tollas
Ok. Tried switching to RelativeLayout and I'm still having the same
problem.

On May 30, 2:31 am, Justin Anderson janderson@gmail.com wrote:
 Why are you using AbsoluteLayout?

 --
 There are only 10 types of people in the world...
 Those who know binary and those who don't.
 --

 On Sat, May 29, 2010 at 8:14 PM, Tollas tolla...@gmail.com wrote:
  No. I have a single AbosoluteLayout nested in a single ScrollView.

  ScrollView
         android:id=@+id/scrollview
          android:layout_width=fill_parent
         android:layout_height=fill_parent
          android:orientation=vertical
          xmlns:android=http://schemas.android.com/apk/res/android;

  AbsoluteLayout
         android:id=@+id/mainlayout
          android:layout_width=fill_parent
         android:layout_height=fill_parent

  On May 29, 8:14 am, niko20 nikolatesl...@yahoo.com wrote:
   Hi,

   Are you using a relative layout at all? Relative layout has some bugs
   when you use forward references, and basically will disappear.

   -niko

   On May 28, 3:07 pm, Tollas tolla...@gmail.com wrote:

Yes.
(getResources().getDrawable(R.drawable.attack_any) != null) returns
true.

On May 28, 1:41 pm, Justin Anderson janderson@gmail.com wrote:

 Have you verified that
  getResources().getDrawable(R.drawable.attack_any)
 is not returning a null value?

  --
 There are only 10 types of people in the world...
 Those who know binary and those who don't.

  --

 On Fri, May 28, 2010 at 12:22 PM, Tollas tolla...@gmail.com wrote:
  The button is there. I can click on it and it behaves normally.
  I have a Spinner onItemSelected that updates the button's image.
  When I activate that  set to any value but the default, the button
  updates properly and the new image is displayed.

  On May 28, 12:57 pm, Justin Anderson janderson@gmail.com
  wrote:
   Is it there and you just can't see it?  Or is it not there
  period?  What
   happens if you click where the button is supposed to be at?

   One other thing I noticed... You are using AbsoluteLayout.  That
  has been
   deprecated and it will not play nice with phones that have
  different
  screen
   sizes.

  --
   There are only 10 types of people in the world...
   Those who know binary and those who don't.

  --

   On Fri, May 28, 2010 at 11:43 AM, Tollas tolla...@gmail.com
  wrote:
Button
  android:id=@+id/attack_ability_button
  android:layout_width=52dp
  android:layout_height=52dp
  android:layout_x=10dp
  android:layout_y=70dp/

final Button attack_ability_button =
(Button)findViewById(R.id.attack_ability_button);

  attack_ability_button.setBackgroundDrawable(getResources().getDrawable(R.drawable.attack_any));

My problem is that when I use the attack_any  drawable to
  create the
button, it just isn't there.
If I change to another image of the same size, the button shows
  up
just fine.
I've tried replacing the image file, renaming it, resizing it.
  Always
with the same results.
I tried using the attack_any drawable for another button and it
disappears as well.
I've also tried moving the button and changing its size, but
  the
problem persists.
I've even tried drawing the background in XML rather than java
  and it
still will not show up.

attack_any.png is a 60x60px image 1kb in size.

Scroll View
-Absolute Layout

--
You received this message because you are subscribed to the
  Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
   http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
  android-beginners%2bunsubscr...@googlegroups.comandroid-beginners%252bunsubscr...@googlegroups.com

  android-beginners%2bunsubscr...@googlegroups.comandroid-beginners%252bunsubscr...@googlegroups.com
  android-beginners%252bunsubscr...@googlegroups.comandroid-beginners%25252bunsubscr...@googlegroups.com

For more options, visit this group at
   http://groups.google.com/group/android-beginners?hl=en

  --
  You received this message because you are subscribed to the Google
  Groups Android Beginners group.

  NEW! Try asking and tagging your question 

Re: [android-beginners] Re: Missing/Hidden/Dissappearing Button problem

2010-06-05 Thread Justin Anderson
Man... I am stumped here.  I have no idea what the problem could be.  Just
out of curiosity (I can't imagine this would be the cause of the problem),
is there a reason that your image is 8 pixels larger than the size of your
button?


--
There are only 10 types of people in the world...
Those who know binary and those who don't.
--


On Sat, Jun 5, 2010 at 12:50 AM, Tollas tolla...@gmail.com wrote:

 Ok. Tried switching to RelativeLayout and I'm still having the same
 problem.

 On May 30, 2:31 am, Justin Anderson janderson@gmail.com wrote:
  Why are you using AbsoluteLayout?
 
  --
  There are only 10 types of people in the world...
  Those who know binary and those who don't.
  --
 
  On Sat, May 29, 2010 at 8:14 PM, Tollas tolla...@gmail.com wrote:
   No. I have a single AbosoluteLayout nested in a single ScrollView.
 
   ScrollView
  android:id=@+id/scrollview
   android:layout_width=fill_parent
  android:layout_height=fill_parent
   android:orientation=vertical
   xmlns:android=http://schemas.android.com/apk/res/android;
 
   AbsoluteLayout
  android:id=@+id/mainlayout
   android:layout_width=fill_parent
  android:layout_height=fill_parent
 
   On May 29, 8:14 am, niko20 nikolatesl...@yahoo.com wrote:
Hi,
 
Are you using a relative layout at all? Relative layout has some bugs
when you use forward references, and basically will disappear.
 
-niko
 
On May 28, 3:07 pm, Tollas tolla...@gmail.com wrote:
 
 Yes.
 (getResources().getDrawable(R.drawable.attack_any) != null) returns
 true.
 
 On May 28, 1:41 pm, Justin Anderson janderson@gmail.com
 wrote:
 
  Have you verified that
   getResources().getDrawable(R.drawable.attack_any)
  is not returning a null value?
 
   --
  There are only 10 types of people in the world...
  Those who know binary and those who don't.
 
   --
 
  On Fri, May 28, 2010 at 12:22 PM, Tollas tolla...@gmail.com
 wrote:
   The button is there. I can click on it and it behaves normally.
   I have a Spinner onItemSelected that updates the button's
 image.
   When I activate that  set to any value but the default, the
 button
   updates properly and the new image is displayed.
 
   On May 28, 12:57 pm, Justin Anderson janderson@gmail.com
   wrote:
Is it there and you just can't see it?  Or is it not there
   period?  What
happens if you click where the button is supposed to be at?
 
One other thing I noticed... You are using AbsoluteLayout.
  That
   has been
deprecated and it will not play nice with phones that have
   different
   screen
sizes.
 
   --
There are only 10 types of people in the world...
Those who know binary and those who don't.
 
   --
 
On Fri, May 28, 2010 at 11:43 AM, Tollas tolla...@gmail.com
 
   wrote:
 Button
   android:id=@+id/attack_ability_button
   android:layout_width=52dp
   android:layout_height=52dp
   android:layout_x=10dp
   android:layout_y=70dp/
 
 final Button attack_ability_button =
 (Button)findViewById(R.id.attack_ability_button);
 
  
 attack_ability_button.setBackgroundDrawable(getResources().getDrawable(R.drawable.attack_any));
 
 My problem is that when I use the attack_any  drawable to
   create the
 button, it just isn't there.
 If I change to another image of the same size, the button
 shows
   up
 just fine.
 I've tried replacing the image file, renaming it, resizing
 it.
   Always
 with the same results.
 I tried using the attack_any drawable for another button
 and it
 disappears as well.
 I've also tried moving the button and changing its size,
 but
   the
 problem persists.
 I've even tried drawing the background in XML rather than
 java
   and it
 still will not show up.
 
 attack_any.png is a 60x60px image 1kb in size.
 
 Scroll View
 -Absolute Layout
 
 --
 You received this message because you are subscribed to the
   Google
 Groups Android Beginners group.
 
 NEW! Try asking and tagging your question on Stack Overflow
 at
http://stackoverflow.com/questions/tagged/android
 
 To unsubscribe from this group, send email to
 

[android-beginners] Re: Missing/Hidden/Dissappearing Button problem

2010-06-05 Thread Tollas
I can't remember why. I tried changing the button size to 60x60 with
the same results.

On Jun 5, 4:06 am, Justin Anderson janderson@gmail.com wrote:
 Man... I am stumped here.  I have no idea what the problem could be.  Just
 out of curiosity (I can't imagine this would be the cause of the problem),
 is there a reason that your image is 8 pixels larger than the size of your
 button?

 --
 There are only 10 types of people in the world...
 Those who know binary and those who don't.
 --

 On Sat, Jun 5, 2010 at 12:50 AM, Tollas tolla...@gmail.com wrote:
  Ok. Tried switching to RelativeLayout and I'm still having the same
  problem.

  On May 30, 2:31 am, Justin Anderson janderson@gmail.com wrote:
   Why are you using AbsoluteLayout?

   --
   There are only 10 types of people in the world...
   Those who know binary and those who don't.
   --

   On Sat, May 29, 2010 at 8:14 PM, Tollas tolla...@gmail.com wrote:
No. I have a single AbosoluteLayout nested in a single ScrollView.

ScrollView
       android:id=@+id/scrollview
        android:layout_width=fill_parent
       android:layout_height=fill_parent
        android:orientation=vertical
        xmlns:android=http://schemas.android.com/apk/res/android;

AbsoluteLayout
       android:id=@+id/mainlayout
        android:layout_width=fill_parent
       android:layout_height=fill_parent

On May 29, 8:14 am, niko20 nikolatesl...@yahoo.com wrote:
 Hi,

 Are you using a relative layout at all? Relative layout has some bugs
 when you use forward references, and basically will disappear.

 -niko

 On May 28, 3:07 pm, Tollas tolla...@gmail.com wrote:

  Yes.
  (getResources().getDrawable(R.drawable.attack_any) != null) returns
  true.

  On May 28, 1:41 pm, Justin Anderson janderson@gmail.com
  wrote:

   Have you verified that
getResources().getDrawable(R.drawable.attack_any)
   is not returning a null value?

--
   There are only 10 types of people in the world...
   Those who know binary and those who don't.

--

   On Fri, May 28, 2010 at 12:22 PM, Tollas tolla...@gmail.com
  wrote:
The button is there. I can click on it and it behaves normally.
I have a Spinner onItemSelected that updates the button's
  image.
When I activate that  set to any value but the default, the
  button
updates properly and the new image is displayed.

On May 28, 12:57 pm, Justin Anderson janderson@gmail.com
wrote:
 Is it there and you just can't see it?  Or is it not there
period?  What
 happens if you click where the button is supposed to be at?

 One other thing I noticed... You are using AbsoluteLayout.
   That
has been
 deprecated and it will not play nice with phones that have
different
screen
 sizes.

--
 There are only 10 types of people in the world...
 Those who know binary and those who don't.

--

 On Fri, May 28, 2010 at 11:43 AM, Tollas tolla...@gmail.com

wrote:
  Button
    android:id=@+id/attack_ability_button
    android:layout_width=52dp
    android:layout_height=52dp
    android:layout_x=10dp
    android:layout_y=70dp/

  final Button attack_ability_button =
  (Button)findViewById(R.id.attack_ability_button);

  attack_ability_button.setBackgroundDrawable(getResources().getDrawable(R.drawable.attack_any));

  My problem is that when I use the attack_any  drawable to
create the
  button, it just isn't there.
  If I change to another image of the same size, the button
  shows
up
  just fine.
  I've tried replacing the image file, renaming it, resizing
  it.
Always
  with the same results.
  I tried using the attack_any drawable for another button
  and it
  disappears as well.
  I've also tried moving the button and changing its size,
  but
the
  problem persists.
  I've even tried drawing the background in XML rather than
  java
and it
  still will not show up.

  attack_any.png is a 60x60px image 1kb in size.

  Scroll View
  -Absolute Layout

  --
  You received this message because you are subscribed to the
Google
  Groups 

[android-beginners] Re: Missing/Hidden/Dissappearing Button problem

2010-06-05 Thread Gubatron
Did you try passing the drawable on the Button XML?

... android:background=@drawable/attack_any /

or you can only obtain the drawable at runtime? (dynamic drawable)

On May 28, 1:43 pm, Tollas tolla...@gmail.com wrote:
 Button
    android:id=@+id/attack_ability_button
    android:layout_width=52dp
    android:layout_height=52dp
    android:layout_x=10dp
    android:layout_y=70dp/

 final Button attack_ability_button =
 (Button)findViewById(R.id.attack_ability_button);
 attack_ability_button.setBackgroundDrawable(getResources().getDrawable(R.drawable.attack_any));

 My problem is that when I use the attack_any  drawable to create the
 button, it just isn't there.
 If I change to another image of the same size, the button shows up
 just fine.
 I've tried replacing the image file, renaming it, resizing it. Always
 with the same results.
 I tried using the attack_any drawable for another button and it
 disappears as well.
 I've also tried moving the button and changing its size, but the
 problem persists.
 I've even tried drawing the background in XML rather than java and it
 still will not show up.

 attack_any.png is a 60x60px image 1kb in size.

 Scroll View
 -Absolute Layout

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] Re: Missing/Hidden/Dissappearing Button problem

2010-06-05 Thread Tollas
Yes, I have tried that. Same result.
I've also tried making it an ImageButton and ImageView with the same
result.

On Jun 5, 3:48 pm, Gubatron gubat...@gmail.com wrote:
 Did you try passing the drawable on the Button XML?

 ... android:background=@drawable/attack_any /

 or you can only obtain the drawable at runtime? (dynamic drawable)

 On May 28, 1:43 pm, Tollas tolla...@gmail.com wrote:

  Button
     android:id=@+id/attack_ability_button
     android:layout_width=52dp
     android:layout_height=52dp
     android:layout_x=10dp
     android:layout_y=70dp/

  final Button attack_ability_button =
  (Button)findViewById(R.id.attack_ability_button);
  attack_ability_button.setBackgroundDrawable(getResources().getDrawable(R.drawable.attack_any));

  My problem is that when I use the attack_any  drawable to create the
  button, it just isn't there.
  If I change to another image of the same size, the button shows up
  just fine.
  I've tried replacing the image file, renaming it, resizing it. Always
  with the same results.
  I tried using the attack_any drawable for another button and it
  disappears as well.
  I've also tried moving the button and changing its size, but the
  problem persists.
  I've even tried drawing the background in XML rather than java and it
  still will not show up.

  attack_any.png is a 60x60px image 1kb in size.

  Scroll View
  -Absolute Layout

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Missing/Hidden/Dissappearing Button problem

2010-05-30 Thread Justin Anderson
Why are you using AbsoluteLayout?

--
There are only 10 types of people in the world...
Those who know binary and those who don't.
--


On Sat, May 29, 2010 at 8:14 PM, Tollas tolla...@gmail.com wrote:

 No. I have a single AbosoluteLayout nested in a single ScrollView.

 ScrollView
android:id=@+id/scrollview
 android:layout_width=fill_parent
android:layout_height=fill_parent
 android:orientation=vertical
 xmlns:android=http://schemas.android.com/apk/res/android;

 AbsoluteLayout
android:id=@+id/mainlayout
 android:layout_width=fill_parent
android:layout_height=fill_parent

 On May 29, 8:14 am, niko20 nikolatesl...@yahoo.com wrote:
  Hi,
 
  Are you using a relative layout at all? Relative layout has some bugs
  when you use forward references, and basically will disappear.
 
  -niko
 
  On May 28, 3:07 pm, Tollas tolla...@gmail.com wrote:
 
   Yes.
   (getResources().getDrawable(R.drawable.attack_any) != null) returns
   true.
 
   On May 28, 1:41 pm, Justin Anderson janderson@gmail.com wrote:
 
Have you verified that
 getResources().getDrawable(R.drawable.attack_any)
is not returning a null value?
 
   
 --
There are only 10 types of people in the world...
Those who know binary and those who don't.
   
 --
 
On Fri, May 28, 2010 at 12:22 PM, Tollas tolla...@gmail.com wrote:
 The button is there. I can click on it and it behaves normally.
 I have a Spinner onItemSelected that updates the button's image.
 When I activate that  set to any value but the default, the button
 updates properly and the new image is displayed.
 
 On May 28, 12:57 pm, Justin Anderson janderson@gmail.com
 wrote:
  Is it there and you just can't see it?  Or is it not there
 period?  What
  happens if you click where the button is supposed to be at?
 
  One other thing I noticed... You are using AbsoluteLayout.  That
 has been
  deprecated and it will not play nice with phones that have
 different
 screen
  sizes.
 
 
 --
  There are only 10 types of people in the world...
  Those who know binary and those who don't.
 
 --
 
  On Fri, May 28, 2010 at 11:43 AM, Tollas tolla...@gmail.com
 wrote:
   Button
 android:id=@+id/attack_ability_button
 android:layout_width=52dp
 android:layout_height=52dp
 android:layout_x=10dp
 android:layout_y=70dp/
 
   final Button attack_ability_button =
   (Button)findViewById(R.id.attack_ability_button);
 

 attack_ability_button.setBackgroundDrawable(getResources().getDrawable(R.drawable.attack_any));
 
   My problem is that when I use the attack_any  drawable to
 create the
   button, it just isn't there.
   If I change to another image of the same size, the button shows
 up
   just fine.
   I've tried replacing the image file, renaming it, resizing it.
 Always
   with the same results.
   I tried using the attack_any drawable for another button and it
   disappears as well.
   I've also tried moving the button and changing its size, but
 the
   problem persists.
   I've even tried drawing the background in XML rather than java
 and it
   still will not show up.
 
   attack_any.png is a 60x60px image 1kb in size.
 
   Scroll View
   -Absolute Layout
 
   --
   You received this message because you are subscribed to the
 Google
   Groups Android Beginners group.
 
   NEW! Try asking and tagging your question on Stack Overflow at
  http://stackoverflow.com/questions/tagged/android
 
   To unsubscribe from this group, send email to
   android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 android-beginners%2bunsubscr...@googlegroups.comandroid-beginners%252bunsubscr...@googlegroups.com
 
 android-beginners%2bunsubscr...@googlegroups.comandroid-beginners%252bunsubscr...@googlegroups.com
 android-beginners%252bunsubscr...@googlegroups.comandroid-beginners%25252bunsubscr...@googlegroups.com
 
 
   For more options, visit this group at
  http://groups.google.com/group/android-beginners?hl=en
 
 --
 You received this message because you are subscribed to the Google
 Groups Android Beginners group.
 
 NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android
 
 To unsubscribe from this group, send email to
 

[android-beginners] Re: Missing/Hidden/Dissappearing Button problem

2010-05-29 Thread niko20
Hi,

Are you using a relative layout at all? Relative layout has some bugs
when you use forward references, and basically will disappear.

-niko

On May 28, 3:07 pm, Tollas tolla...@gmail.com wrote:
 Yes.
 (getResources().getDrawable(R.drawable.attack_any) != null) returns
 true.

 On May 28, 1:41 pm, Justin Anderson janderson@gmail.com wrote:

  Have you verified that getResources().getDrawable(R.drawable.attack_any)
  is not returning a null value?

  --
  There are only 10 types of people in the world...
  Those who know binary and those who don't.
  --

  On Fri, May 28, 2010 at 12:22 PM, Tollas tolla...@gmail.com wrote:
   The button is there. I can click on it and it behaves normally.
   I have a Spinner onItemSelected that updates the button's image.
   When I activate that  set to any value but the default, the button
   updates properly and the new image is displayed.

   On May 28, 12:57 pm, Justin Anderson janderson@gmail.com wrote:
Is it there and you just can't see it?  Or is it not there period?  What
happens if you click where the button is supposed to be at?

One other thing I noticed... You are using AbsoluteLayout.  That has 
been
deprecated and it will not play nice with phones that have different
   screen
sizes.

--
There are only 10 types of people in the world...
Those who know binary and those who don't.
--

On Fri, May 28, 2010 at 11:43 AM, Tollas tolla...@gmail.com wrote:
 Button
   android:id=@+id/attack_ability_button
   android:layout_width=52dp
   android:layout_height=52dp
   android:layout_x=10dp
   android:layout_y=70dp/

 final Button attack_ability_button =
 (Button)findViewById(R.id.attack_ability_button);

   attack_ability_button.setBackgroundDrawable(getResources().getDrawable(R.drawable.attack_any));

 My problem is that when I use the attack_any  drawable to create the
 button, it just isn't there.
 If I change to another image of the same size, the button shows up
 just fine.
 I've tried replacing the image file, renaming it, resizing it. Always
 with the same results.
 I tried using the attack_any drawable for another button and it
 disappears as well.
 I've also tried moving the button and changing its size, but the
 problem persists.
 I've even tried drawing the background in XML rather than java and it
 still will not show up.

 attack_any.png is a 60x60px image 1kb in size.

 Scroll View
 -Absolute Layout

 --
 You received this message because you are subscribed to the Google
 Groups Android Beginners group.

 NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

 To unsubscribe from this group, send email to
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
   android-beginners%2bunsubscr...@googlegroups.comandroid-beginners%252bunsubscr...@googlegroups.com

 For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

   --
   You received this message because you are subscribed to the Google
   Groups Android Beginners group.

   NEW! Try asking and tagging your question on Stack Overflow at
  http://stackoverflow.com/questions/tagged/android

   To unsubscribe from this group, send email to
   android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
   For more options, visit this group at
  http://groups.google.com/group/android-beginners?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] Re: Missing/Hidden/Dissappearing Button problem

2010-05-29 Thread Tollas
No. I have a single AbosoluteLayout nested in a single ScrollView.

ScrollView
android:id=@+id/scrollview
android:layout_width=fill_parent
android:layout_height=fill_parent
android:orientation=vertical
xmlns:android=http://schemas.android.com/apk/res/android;

AbsoluteLayout
android:id=@+id/mainlayout
android:layout_width=fill_parent
android:layout_height=fill_parent

On May 29, 8:14 am, niko20 nikolatesl...@yahoo.com wrote:
 Hi,

 Are you using a relative layout at all? Relative layout has some bugs
 when you use forward references, and basically will disappear.

 -niko

 On May 28, 3:07 pm, Tollas tolla...@gmail.com wrote:

  Yes.
  (getResources().getDrawable(R.drawable.attack_any) != null) returns
  true.

  On May 28, 1:41 pm, Justin Anderson janderson@gmail.com wrote:

   Have you verified that getResources().getDrawable(R.drawable.attack_any)
   is not returning a null value?

   --
   There are only 10 types of people in the world...
   Those who know binary and those who don't.
   --

   On Fri, May 28, 2010 at 12:22 PM, Tollas tolla...@gmail.com wrote:
The button is there. I can click on it and it behaves normally.
I have a Spinner onItemSelected that updates the button's image.
When I activate that  set to any value but the default, the button
updates properly and the new image is displayed.

On May 28, 12:57 pm, Justin Anderson janderson@gmail.com wrote:
 Is it there and you just can't see it?  Or is it not there period?  
 What
 happens if you click where the button is supposed to be at?

 One other thing I noticed... You are using AbsoluteLayout.  That has 
 been
 deprecated and it will not play nice with phones that have different
screen
 sizes.

 --
 There are only 10 types of people in the world...
 Those who know binary and those who don't.
 --

 On Fri, May 28, 2010 at 11:43 AM, Tollas tolla...@gmail.com wrote:
  Button
    android:id=@+id/attack_ability_button
    android:layout_width=52dp
    android:layout_height=52dp
    android:layout_x=10dp
    android:layout_y=70dp/

  final Button attack_ability_button =
  (Button)findViewById(R.id.attack_ability_button);

attack_ability_button.setBackgroundDrawable(getResources().getDrawable(R.drawable.attack_any));

  My problem is that when I use the attack_any  drawable to create the
  button, it just isn't there.
  If I change to another image of the same size, the button shows up
  just fine.
  I've tried replacing the image file, renaming it, resizing it. 
  Always
  with the same results.
  I tried using the attack_any drawable for another button and it
  disappears as well.
  I've also tried moving the button and changing its size, but the
  problem persists.
  I've even tried drawing the background in XML rather than java and 
  it
  still will not show up.

  attack_any.png is a 60x60px image 1kb in size.

  Scroll View
  -Absolute Layout

  --
  You received this message because you are subscribed to the Google
  Groups Android Beginners group.

  NEW! Try asking and tagging your question on Stack Overflow at
 http://stackoverflow.com/questions/tagged/android

  To unsubscribe from this group, send email to
  android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
android-beginners%2bunsubscr...@googlegroups.comandroid-beginners%252bunsubscr...@googlegroups.com

  For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en

--
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
   http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
For more options, visit this group at
   http://groups.google.com/group/android-beginners?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] Re: Missing/Hidden/Dissappearing Button problem

2010-05-28 Thread Tollas
The button is there. I can click on it and it behaves normally.
I have a Spinner onItemSelected that updates the button's image.
When I activate that  set to any value but the default, the button
updates properly and the new image is displayed.

On May 28, 12:57 pm, Justin Anderson janderson@gmail.com wrote:
 Is it there and you just can't see it?  Or is it not there period?  What
 happens if you click where the button is supposed to be at?

 One other thing I noticed... You are using AbsoluteLayout.  That has been
 deprecated and it will not play nice with phones that have different screen
 sizes.

 --
 There are only 10 types of people in the world...
 Those who know binary and those who don't.
 --

 On Fri, May 28, 2010 at 11:43 AM, Tollas tolla...@gmail.com wrote:
  Button
    android:id=@+id/attack_ability_button
    android:layout_width=52dp
    android:layout_height=52dp
    android:layout_x=10dp
    android:layout_y=70dp/

  final Button attack_ability_button =
  (Button)findViewById(R.id.attack_ability_button);

  attack_ability_button.setBackgroundDrawable(getResources().getDrawable(R.drawable.attack_any));

  My problem is that when I use the attack_any  drawable to create the
  button, it just isn't there.
  If I change to another image of the same size, the button shows up
  just fine.
  I've tried replacing the image file, renaming it, resizing it. Always
  with the same results.
  I tried using the attack_any drawable for another button and it
  disappears as well.
  I've also tried moving the button and changing its size, but the
  problem persists.
  I've even tried drawing the background in XML rather than java and it
  still will not show up.

  attack_any.png is a 60x60px image 1kb in size.

  Scroll View
  -Absolute Layout

  --
  You received this message because you are subscribed to the Google
  Groups Android Beginners group.

  NEW! Try asking and tagging your question on Stack Overflow at
 http://stackoverflow.com/questions/tagged/android

  To unsubscribe from this group, send email to
  android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
  For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Missing/Hidden/Dissappearing Button problem

2010-05-28 Thread Justin Anderson
Have you verified that getResources().getDrawable(R.drawable.attack_any)
is not returning a null value?


--
There are only 10 types of people in the world...
Those who know binary and those who don't.
--


On Fri, May 28, 2010 at 12:22 PM, Tollas tolla...@gmail.com wrote:

 The button is there. I can click on it and it behaves normally.
 I have a Spinner onItemSelected that updates the button's image.
 When I activate that  set to any value but the default, the button
 updates properly and the new image is displayed.

 On May 28, 12:57 pm, Justin Anderson janderson@gmail.com wrote:
  Is it there and you just can't see it?  Or is it not there period?  What
  happens if you click where the button is supposed to be at?
 
  One other thing I noticed... You are using AbsoluteLayout.  That has been
  deprecated and it will not play nice with phones that have different
 screen
  sizes.
 
  --
  There are only 10 types of people in the world...
  Those who know binary and those who don't.
  --
 
  On Fri, May 28, 2010 at 11:43 AM, Tollas tolla...@gmail.com wrote:
   Button
 android:id=@+id/attack_ability_button
 android:layout_width=52dp
 android:layout_height=52dp
 android:layout_x=10dp
 android:layout_y=70dp/
 
   final Button attack_ability_button =
   (Button)findViewById(R.id.attack_ability_button);
 
  
 attack_ability_button.setBackgroundDrawable(getResources().getDrawable(R.drawable.attack_any));
 
   My problem is that when I use the attack_any  drawable to create the
   button, it just isn't there.
   If I change to another image of the same size, the button shows up
   just fine.
   I've tried replacing the image file, renaming it, resizing it. Always
   with the same results.
   I tried using the attack_any drawable for another button and it
   disappears as well.
   I've also tried moving the button and changing its size, but the
   problem persists.
   I've even tried drawing the background in XML rather than java and it
   still will not show up.
 
   attack_any.png is a 60x60px image 1kb in size.
 
   Scroll View
   -Absolute Layout
 
   --
   You received this message because you are subscribed to the Google
   Groups Android Beginners group.
 
   NEW! Try asking and tagging your question on Stack Overflow at
  http://stackoverflow.com/questions/tagged/android
 
   To unsubscribe from this group, send email to
   android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 android-beginners%2bunsubscr...@googlegroups.comandroid-beginners%252bunsubscr...@googlegroups.com
 
   For more options, visit this group at
  http://groups.google.com/group/android-beginners?hl=en

 --
 You received this message because you are subscribed to the Google
 Groups Android Beginners group.

 NEW! Try asking and tagging your question on Stack Overflow at
 http://stackoverflow.com/questions/tagged/android

 To unsubscribe from this group, send email to
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en


-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] Re: Missing/Hidden/Dissappearing Button problem

2010-05-28 Thread Tollas
Yes.
(getResources().getDrawable(R.drawable.attack_any) != null) returns
true.

On May 28, 1:41 pm, Justin Anderson janderson@gmail.com wrote:
 Have you verified that getResources().getDrawable(R.drawable.attack_any)
 is not returning a null value?

 --
 There are only 10 types of people in the world...
 Those who know binary and those who don't.
 --

 On Fri, May 28, 2010 at 12:22 PM, Tollas tolla...@gmail.com wrote:
  The button is there. I can click on it and it behaves normally.
  I have a Spinner onItemSelected that updates the button's image.
  When I activate that  set to any value but the default, the button
  updates properly and the new image is displayed.

  On May 28, 12:57 pm, Justin Anderson janderson@gmail.com wrote:
   Is it there and you just can't see it?  Or is it not there period?  What
   happens if you click where the button is supposed to be at?

   One other thing I noticed... You are using AbsoluteLayout.  That has been
   deprecated and it will not play nice with phones that have different
  screen
   sizes.

   --
   There are only 10 types of people in the world...
   Those who know binary and those who don't.
   --

   On Fri, May 28, 2010 at 11:43 AM, Tollas tolla...@gmail.com wrote:
Button
  android:id=@+id/attack_ability_button
  android:layout_width=52dp
  android:layout_height=52dp
  android:layout_x=10dp
  android:layout_y=70dp/

final Button attack_ability_button =
(Button)findViewById(R.id.attack_ability_button);

  attack_ability_button.setBackgroundDrawable(getResources().getDrawable(R.drawable.attack_any));

My problem is that when I use the attack_any  drawable to create the
button, it just isn't there.
If I change to another image of the same size, the button shows up
just fine.
I've tried replacing the image file, renaming it, resizing it. Always
with the same results.
I tried using the attack_any drawable for another button and it
disappears as well.
I've also tried moving the button and changing its size, but the
problem persists.
I've even tried drawing the background in XML rather than java and it
still will not show up.

attack_any.png is a 60x60px image 1kb in size.

Scroll View
-Absolute Layout

--
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
   http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
  android-beginners%2bunsubscr...@googlegroups.comandroid-beginners%252bunsubscr...@googlegroups.com

For more options, visit this group at
   http://groups.google.com/group/android-beginners?hl=en

  --
  You received this message because you are subscribed to the Google
  Groups Android Beginners group.

  NEW! Try asking and tagging your question on Stack Overflow at
 http://stackoverflow.com/questions/tagged/android

  To unsubscribe from this group, send email to
  android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
  For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en