Можно ли добавить элементы в GridView вручную?
Никак не пойму, везде примеры только с программным добавлением элементов в GridView. А мне хотелось бы просто добавить несколько кнопок, вручную:
<GridView
android:id="@+id/items_catalog_subcategory_selector"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:numColumns="3"
app:layout_constraintTop_toBottomOf="@+id/selector_horizontal_message"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent">
// Вот сюда добавить какие-то элементы вручную можно или нет?
</GridView>