私は異なるIDを持つ15個のボタンを持っています:
<Button
android:id="@+id/button14"
android:layout_width="150dp"
android:layout_height="140dp"
android:layout_alignParentTop="true"
android:layout_marginLeft="955dp"
android:layout_marginTop="300dp"
android:onClick="myClickHandler"
android:text="test"
android:textSize="@dimen/NomenklaturaNameLong"
android:textStyle="bold|italic"/>
すべてのための 1 つのイベントハドラー:
public void myClickHandler(View target)
{
Intent intent1;
switch (target.getId())
{
case R.id.button1:
ButtonOn (Asortiment.SmenaButName[0],Asortiment.SmenaButPrice[0]);
break;
case R.id.button10:
ButtonOn (Asortiment.SmenaButName[9],Asortiment.SmenaButPrice[9]);
break;
case R.id.button11:
ButtonOn (Asortiment.SmenaButName[10],Asortiment.SmenaButPrice[10]);
break;
.................
ボタンを押すと、リスト ビューの行に 2 つの文字列が追加されます。1 つのボタンを押すこともありますが、一度に複数のボタンを押した場合のように、いくつかの異なる文字列が追加されていることがわかります。それは何でしょうか?