Android Studio not showing properties

后端 未结 11 1377
时光取名叫无心
时光取名叫无心 2020-12-09 12:41

I am experiencing a strange problem with Android Studio 2.2.3. No matter which widget is selected in Design View, the Properties View doesn\'t show the properties - it simpl

相关标签:
11条回答
  • 2020-12-09 13:20

    Window -> Restore Default Layout

    0 讨论(0)
  • 2020-12-09 13:21

    To solve this problem, I did not need to reinstall Android Studio. Invalidating cache/restarting did not work. So I ended up deleting C:\Users\{your user here}\.AndroidStudio{version}. I had two AndroidStudio folders with different versions and deleted both of them. After starting Android studio all settings will be restored to default and you will have to select theme and etc. You do not need to delete gradle folder.

    0 讨论(0)
  • 2020-12-09 13:25

    Try this:

    gradle-wrapper.properties:

    distributionBase=GRADLE_USER_HOME
    distributionPath=wrapper/dists
    zipStoreBase=GRADLE_USER_HOME
    zipStorePath=wrapper/dists
    distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
    

    build.gradle:

    dependencies {
            classpath 'com.android.tools.build:gradle:3.1.3'
            // NOTE: Do not place your application dependencies here; they belong
            // in the individual module build.gradle files
        }
    
    0 讨论(0)
  • 2020-12-09 13:25

    File->> Sync Project With Gradle Files Worked for me

    0 讨论(0)
  • 2020-12-09 13:26

    Just go to Tool menu and here you see xml Action menu and just click Genrate Schema from xml file so it can solve your problem

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