Ive got my mail gallery class:

public class sub_gallery extends Gallery {

public sub_gallery(Context ctx, AttributeSet attrSet) {
    super(ctx, attrSet);
    // TODO Auto-generated constructor stub
}

private boolean isScrollingLeft(MotionEvent e1, MotionEvent e2){ 
       return e2.getX() > e1.getX(); 
    }

@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY){
  int kEvent;
  if(isScrollingLeft(e1, e2)){ //Check if scrolling left
    kEvent = KeyEvent.KEYCODE_DPAD_LEFT;
  }
  else{ //Otherwise scrolling right
    kEvent = KeyEvent.KEYCODE_DPAD_RIGHT;
  }
  onKeyDown(kEvent, null);
  return true;  
}
}

And Im calling it like so:

ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,android.R.layout.simple_gallery_item, new ArrayList<String>());
    adapter.add("text1");
    adapter.add("text2");
    adapter.add("text3");
    adapter.add("text4"); 
sub_gallery g = (sub_gallery) findViewById(R.id.sub_gal);
    g.setAdapter(adapter);

And my layout is a follows:

<com.interfacetesting.android.email.sub_gallery
         android:id="@+id/sub_gal"
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:background="#d0d0d0"
         android:layout_marginTop="10dp"
         android:gravity="center_horizontal"
        android:spacing="100px"
         />

Everything is working as needed but I cannot figure out how to change the text color inside the gallery (in the array) for the life of me..

Any help would be appreciated :D

Thanks

link|improve this question
stackoverflow.com/questions/5732695/… doesn't help? – TryTryAgain Jan 5 at 18:00
i dont think i can implement what they are saying in that topic the same.. I tried, no luck. – n388mm Jan 5 at 19:13
feedback

1 Answer

Have you tried using the android:textColor="#000000" property?

link|improve this answer
yep, it doesn't work (i think) due to me calling the gallery as <com.interfacetesting.android.email.sub_gallery> in my layout.xml – n388mm Jan 5 at 19:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.