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

Recent content by unet

  1. U

    Apps error: cannot find symbol import com.urbannet.ryamusicplayer.BuildConfig;

    I am working on an open-source project based on Phonograph. I renamed the package/domain name and I am getting the error: "C:\Users\user\AndroidStudioProjects\Rya Music Player\Play Store\Rya Music Player\app\src\main\java\com\urbannet\ryamusicplayer\glide\BlurTransformation.java:19: error...
  2. U

    Apps (Help) Pressing back on webview fragment activity does not go back to previous page

    Hello. I have an app that has fragment activities with webview and a navigational drawer. When I press back it goes to a previous fragment activity but it does not go back to the previous page on the webview. The code on MainActivity.java: @Override public boolean...
  3. U

    Apps error on music app

    Hello. I got the source code of a music player but I am having problems running the app. When I try to run or build the app I get the error “AAPT: error: failed writing to ‘C:\Users\user\AndroidStudioProjects\Urban Music...
  4. U

    Opening a fragment from another fragment

    Hello. I created an app with a navigation drawer that uses fragment but I need to open multiple fragments from one fragment. I already successfully find a way to open one fragment but I want to open more than one. The code is bellow: MainActivity.java: package...
  5. U

    Android Studios - Dependencies error for admob

    Hello I am trying to implement admob and on the file build.gradle (module: app) I get an error: The code in the image: apply plugin: 'com.android.application' android { compileSdkVersion 28 defaultConfig { applicationId "com.urbannet.user2.receitassaudaveis"...
  6. U

    cannot resolve method 'onOptionsItemSelected(android.view.MenuItem)'

    Hello. I am trying to Create a navigation drawer from the tutorial on https://developer.android.com/training/implementing-navigation/nav-drawer#java , but I have an error. When I type "return super.onOptionsItemSelected(item);" I get an error on "onOptionsItemSelected", it says 'cannot resolve...