0

Why ActionBarActivity in eclipse Show this way In the picture!!!

enter image description here

Does this mean there is an error?

Bill the Lizard
  • 398,270
  • 210
  • 566
  • 880
ahmad
  • 1
  • 1

1 Answers1

2

It means that ActionBarActivity is deprecated. You should use AppCompatActivity instead.

Note: If you hover your mouse over the warning icon to the left of the line number, Eclipse should display a warning message with options on what you can do.

Bill the Lizard
  • 398,270
  • 210
  • 566
  • 880