美文网首页
Android-原生控件目录

Android-原生控件目录

作者: 积木Blocks | 来源:发表于2018-08-20 00:31 被阅读62次

    前言


    每次编写界面的时候,发现知道需要使用什么View,却不熟悉这个View的api的使用,不得不去再次重新学习。
    又一次入坑,为了避免这种爬坑现象的频率出现,现打算整理一份常用控件使用的相关资料。

    • 1.常用View的基本使用(API)
    • 2.常用View的注意细节
    • 3.常用View的业务需求
    • 4.常用View的扩展第三方库

    常用控件


    分类

    • android.jar
    • android.support.support-v4
    • android.support.appcompat-v7
    • android.support.design
    • android.support.support.recyclerview-v7
    • android.support.constraint

    1.android.jar(26)


    1.1 widget包下的控件

    • 常用
      • Button
      • CheckBox
      • EditText
      • ExpandableListView
      • FrameLayout
      • GridView
      • HorizontalScrollView
      • ImageView
      • LinearLayout
      • ListView
      • PopupWindow
      • ProgressBar
      • RadioButton
      • RadioGroup
      • RatingBar
      • RelativeLayout
      • RemoteViews
      • ScrollView
      • SeekBar
      • Space
      • Spinner
      • TextView
      • Toast
      • ToggleButton
      • Toolbar
      • VideoView
    • 使用较少的

      (个别控件用的多的之后上移)

      • ActionMenuView
      • AutoCompleteTextView
      • Chronometer
      • CheckedTextView
      • CalendarView
      • DatePicker
      • GridLayout
      • ImageButton
      • ImageSwitcher
      • MediaController
      • MultiAutoCompleteTextView
      • NumberPicker
      • QuickContactBadge
      • SearchView
      • Switch
      • TabHost
      • TableLayout
      • TableRow
      • TabWidget
      • TextClock
      • TimePicker
      • ZoomControls
    • 过时的
      • AbsoluteLayout
      • AnalogClock
      • DialerFilter
      • DigitalClock
      • Gallery
      • SlidingDrawer
      • TwoLineListItem
      • ZoomButton

    1.2 view包下的控件


    1.3 app包下

    • Dialog
    • DialogFragment

    占坑待续


    相关文章

      网友评论

          本文标题:Android-原生控件目录

          本文链接:https://www.haomeiwen.com/subject/otghiftx.html