この質問は以前に聞いたことがあるかもしれませんが、多くを作っていないようです。progress
HorizontalScrollView内のImageViewsにOnclickListenerを追加する
基本的に私は、押されたときにimage
を展開する私のHorizontalScrollView
にonclicklistener
を追加したいです。
ここでは、現在のコードがXML
ファイルにあります:私は別のものを試してきたが、誰もが良いを知っているか見つけることができる場合、私は、それが動作するように見えることはできません
<HorizontalScrollView
android:id="@+id/firstscrollview"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_gravity="left"
android:orientation="horizontal"
android:layout_marginTop="50dp">
<LinearLayout
android:id="@+id/firstlinear"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
android:orientation="horizontal" >
<ImageView
android:id="@+id/Cercie_button"
android:layout_width="100dp"
android:layout_height="100dp"
android:scaleType="fitCenter"
android:src="@drawable/image"/>
それは非常に感謝される例です!
はMainActivity – Juan
でのonCreateメソッドでそれを追加する方法を作成してきたもの、それは間違って取得しておりません場合イメージビューの代わりに 'ImageButton'を使用します。 'ImageButton'はlayout.xmlにonClick xml属性を実装できます – abcOfJavaAndCPP