Android Studio 3.1 does not showing 'android' option under Tools menu

前端 未结 12 946
旧时难觅i
旧时难觅i 2020-12-29 19:50

I am using android studio 3.1 for some development. But Its does not showing android option under Tools menu. Whereas Android studio 3.0 doesn\'t h

相关标签:
12条回答
  • 2020-12-29 20:18

    Add navigation folder inside res and add a file like below file. In this file, we have two activities that are UI will show in this navigation file.

    <?xml version="1.0" encoding="utf-8"?>
    <navigation xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:id="@+id/nav_graph"
        app:startDestination="@id/mainActivity">
    
        <activity
            android:id="@+id/mainActivity"
            android:name="com.noman.navigation.MainActivity"
            android:label="activity_main"
            tools:layout="@layout/activity_main" />
        <activity
            android:id="@+id/oneActivity"
            android:name="com.noman.navigation.OneActivity"
            android:label="one_activity"
            tools:layout="@layout/one_activity" />
    </navigation>
    

    you can also add this navigation via right click in res folder and section add a new resource.

    By this, you will be able to see navigations on UI.

    0 讨论(0)
  • 2020-12-29 20:19

    I got the same problem.

    Check you don't have any errors on the bottom of android studio. I got one with sdk build. If you got the same click on the link in error log.

    Next go to file -> settings -> Appearance&Behavior -> Menus and Toolbars

    Roll up Main menu -> Tools.

    Choose Android.

    Click on 'Apply' button and 'OK'. Wait for a while (gradle progress-bar on the bottom).

    I hope that I solve your problem.

    0 讨论(0)
  • 2020-12-29 20:20

    From the android studio 3.1, android option menu is deleted and you can read it from the documentation : https://developer.android.com/studio/profile/monitor.html if you want to open it, open from the android-sdk/tools/ directory then run monitor.bat hope this help you guys

    0 讨论(0)
  • 2020-12-29 20:20

    I have faced the same issue after many tried I found the solution. In Android Studio 3.1.3, Click File> Settings > Debugger > Uncheck Kill the debug process immediately and apply then again check it.

    0 讨论(0)
  • 2020-12-29 20:23

    Probably because the Android options are already there, provided without an additional sub-menu.

    Here is what there is under the Tools menu in Android Studio 3.0, all options are same, just grouped together:

    EDIT: There are some missing items such as 'Enable ADB Integration', for these you can always use the Help > Find Action... where you type in the search, it will look like this:

    0 讨论(0)
  • 2020-12-29 20:27

    Can u find the android in the Help>action? like shown below.

    click on Find Action or Ctrl+Shift+A

    After that try searching"Android" in the search bar.

    0 讨论(0)
提交回复
热议问题