Android app in Eclipse: Edit text not showing on Graphical layout

后端 未结 6 1295
醉话见心
醉话见心 2020-11-27 13:53

I am trying to add a text field onto my Android app in Eclipse, but then I drag the Plain text option on to the graphical layout, a message at the bottom comes

6条回答
  •  借酒劲吻你
    2020-11-27 14:30

    The W in Android 4.4W suggest wearable devices. Android Wear is a wrist watch and you cannot type anything in it so you cannot use EditText on 4.4W. Change the API to 19 or less or change it to 4.4L

    Check it out @ https://developer.android.com/design/wear/index.html

    You can change your previewing API version as Jim suggested if u don't want to develop apps for wearable devices.

提交回复
热议问题