11

My Android Studio in activity_main.xml showing this problem: "Rendering Problems No render target selected" Help?

weinek
  • 129
  • 1
  • 1
  • 5

10 Answers10

7

You need to run the AVD Manager to add a virtual device that matches the target API version your project is set to. Click Tools->Android->AVD Manager. Click on 'New', add virtual devices targeting higher API levels, e.g 18, 19, etc. Then restart Android Studio, and open your project, it should find a target device to allow you access to the Design view.

Chinedu
  • 71
  • 3
5

Top menu bar on the left side of the AVD Manager button you have a "Sync Project with Gradle Files" button. Click that. Android Studio may become sluggish for like 5 seconds, but you'll also see a loading wheel in the project files tab, and possibly a yellow bar on the top of activity_main.xml tab saying that Gradle is syncing. In about 5 seconds everything will be up to date, and you will see the device as expected. Hope this helps.

tuygun
  • 79
  • 3
  • 12
5

I solved it with File -> Invalidate Caches/Restart.

Hasan Hashem
  • 463
  • 5
  • 10
3

I was getting the same error and the reason was that in my application the targetSdkVersion was set to version I didn't have setup on my AndroidStudio, error disappeared after I modified that, hope that helps.

KgaboL
  • 130
  • 5
1

Check the Android manifest file to see if you have specified this

<uses-sdk android:minSdkVersion="integer"
          android:targetSdkVersion="integer"
          android:maxSdkVersion="integer" />

If not then add this, it solved the error for me.

Andrew T.
  • 4,701
  • 8
  • 43
  • 62
Sagar Devanga
  • 2,815
  • 27
  • 30
0

You just make sure your right top corner api selection is below api 18 or 18 I think it will work or you will goto graphics layout and see the top corner and change

Naveen Kumar Kuppan
  • 1,424
  • 1
  • 10
  • 12
0

Close the emulator if it is previously opened. Then try launching the fragment_main.xml again in design mode.

0

Restart Android Studio and it should solve the problem

real 19
  • 748
  • 8
  • 32
0

Check the package name is correctly set in applicationId in file app\build.gradle

Ankit Sharma
  • 5,191
  • 2
  • 23
  • 29
0

Top menu bar on the left side of the AVD Manager button you have a "Sync Project with Gradle Files" button. Click that. Android Studio may become sluggish for like 5 seconds, but you'll also see a loading wheel in the project files tab, and possibly a yellow bar on the top of activity_main.xml tab saying that Gradle is syncing. In about 5 seconds everything will be up to date, and you will see the device as expected. Hope this helps.

This really works

If it says Gradle Sync failed then download the missing platforms and platforms and then restart

It worked for me..

Mr. Suryaa Jha
  • 1,516
  • 16
  • 10