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

Search results

  1. R

    Apps Image is not changed when upload new image

    In Android Studio, I can get to change an image in Firebase Storage. But When I run app again, the old image still in cache and is loaded on ImageView, even I link new image with Firebase directly. Is there someone with this same problem which could help me? P.S.: I can save the image in...
  2. R

    Apps onRequestPermissionResulti in fragment

    Is there anyone who knows how to make the onRequestPermissionResult method works from a fragment after click in camera? I have a code for this, inside a fragment, and the camera is displaying correctly, but when I click to get a photo, this method does not is called.
  3. R

    Perform a click in a menu item clicking by ImageView

    I have a tabbed screen with a Bottom Navigation Bar which have three menu items: Home. DashBoard and Configuration. In the first tab (home), I have an ImageView, inside a Listview header, with user's photo. I need to perform the click of the Configuration menu item when the user perform a...
  4. R

    Creating a rounded image

    I see many examples of that using implementations and mathematics calcs. I would like to show my soft way to do this. Create a CardView object and insert inside it an ImageView object, like this: <androidx.cardview.widget.CardView android:id="@+id/cardLogo"...
  5. R

    Fragment does not recognize any Activity

    I have created a bottom navigation activity with three fragments using templates from Android Studio. In the first Fragment of this bottom navigation activity, has a Listiview with many items. I need to redirect the user to another activity when he clicks on an item, but the fragment doesn't...
  6. R

    Viewport doesn't work with Scrollview

    Hi, My app works fine and no errors in portrait view but I need Scroll the screen in Landscape view. My XML File seems like this: <ScrollView> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical">...