A little problem in Eclipse

1

There was, yesterday, a question right here on the site regarding a problem in my Eclipse ADT. I thank the lucky man, whose name I am not remembered, for helping me! The way was to install a plugin in the SDK.

Even so, when I build my Android project in Eclipse ADT, I think IDE suggests a code change (these bulbs!). Here's what I'm talking about:

This code model did not appear when you installed the ADT plugin a few days ago, and there were no lights.

If there is any problem or improvement in the code, what do I do?

    
asked by anonymous 24.05.2015 / 22:13

1 answer

0

Names of objects / properties / methods etc. underlining are obsolete, it is not recommended to use them in new designs, the lamp should be a suggestion of the new feature or similar.

The ActionBarActivity class is deprecated as per documentation in place it should be used at AppCompatActivity

Change:

public class Tela extends ActionBarActivity

To:

public class Tela extends AppCompatActivity
    
24.05.2015 / 22:25