Recent content by jessPHP

  1. J

    layout covering another layout

    Hi everyone! I want a layout with alpha=0.5 to cover another layout with a button. However I am still able to click the button of the covered layout, although the other layout is in the front. Why?? This is the xml layout: <RelativeLayout...
  2. J

    getview called when scrolling Listview in Android

    Hi everyone! I am having problems when scrolling a ListView in Android. Each item in the ListView shows an image downloaded from internet. Whenever I scroll the ListView, it calls the method ?getView(int position, View convertView, ViewGroup parent)?, causing the image to be downloaded again...
  3. J

    Read sensor values directly

    Thank you very much danialgoodwin!
  4. J

    android library for online store

    Hi there! I have a online store and I want to develop an Android version of that store, so users can buy products using the android app. I am wondering if there is some kind of android library for online stores. Much better if the library is for prestashop, but I do not care about the kind of...
  5. J

    Read sensor values directly

    Hi There! I just want to know if it is possible to read sensor values directly, without listeners. Thank you very much!
  6. J

    fragment as a header

    Hello everyone! I am developing an Android application that has different activities. However, there is a header common to these activities, and this header changes just a little bit from one activity to another. How would you implement this behavior? Would you use a Fragment? I am going to...