I wonder where can I get the text box
(as shown in diagram below) at the left panel of android studio
? As I can see, there only has textFields
which has a line below the text but not text box.
相关问题
- How can I create this custom Bottom Navigation on
- Carriage Return (ASCII chr 13) is missing from tex
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Android OverlayItem.setMarker(): Change the marker
as others had suggested it's a system-default theme from an older API, however it isn't used much and its design is a bit out-dated. i'd highly suggest wrapping a EditText in a drawable, since it'd give you control of the design, and make it more visually stimulating =) the plus side is it's very simply to create a shape drawable in xml!
It's called
EditText
. I believe in Android Studio it is the TextField which has a line below. Just using a different theme. To get the TextBox look you need to use one of the old themes like `@android:style/Theme.Light for your application.There is no such object "TextBox" in Android.
What you are seeing is the name of the app in the app's title bar.
It's supplied by the system.
you have to use the EditText to create such textbox in android studio, example is displayed below