-2

かなり長い間反応ネイティブを使用した後、私はアンドロイドを研究していますが、ここにあるようなアンドロイドのアイコンボタンについて何も見つけられないようです:

https://callstack.github.io/react-native-paper/icon-button.html

ありがとう

4

1 に答える 1

1

ImageButtonAndroid ではと呼ばれます。

<ImageButton
    android:id="@+id/favorite_imageButton"
    android:layout_width="wrap_content"
    android:layout_height="48dp"
    android:layout_marginTop="@dimen/margin_extra_small"
    android:layout_marginEnd="@dimen/margin_extra_small"
    android:layout_marginBottom="@dimen/margin_extra_small"
    android:background="?selectableItemBackgroundBorderless"
    android:padding="@dimen/margin_extra_small"
    android:src="@drawable/ic_star_border"
    android:tint="?attr/colorOnBackground"       
    app:layout_constraintBottom_toBottomOf="@id/up_navigation_imageButton"
    app:layout_constraintRight_toLeftOf="@id/game_link_imageButton"
    app:layout_constraintTop_toTopOf="@id/up_navigation_imageButton"
    tools:src="@drawable/ic_star_border" />
于 2020-08-27T12:54:09.460 に答える