Tools namespace attribute for showing layout in ViewPager in design time

Nope, there is no such attribute.

Currently (Mar 2021) there is:

  • tools:context Intended for: Any root View

  • tools:itemCount Intended for: RecyclerView

  • tools:layout Intended for: fragment

  • tools:listitem / tools:listheader / tools:listfooter
    Intended for: AdapterView (and subclasses like ListView)

  • tools:showIn Intended for: Any root View in a layout that’s referred to by an include

  • tools:menu Intended for: Any root View

  • tools:minValue / tools:maxValue Intented for: NumberPicker

  • tools:openDrawer Intented for DrawerLayout

For resources

  • tools:shrinkMode

  • tools:keep

  • tools:discard

  • tools:locale

Error Handling:

  • tools:ignore Intented for any: Any element

  • tools:targetApi Intended for: Any element

General:

  • tools: instead of android: Intended for: View

Official Android Studio documentation

Leave a Comment