0

メインアクティビティにPakerfeldtsのビューフロー(具体的には「DiffViewFlowExample」)を実装していますが、膨らんだビューにあるImageButtonにクリックリスナーを追加する方法がわかりません。

では、dashboard_viewにある@ id =regulatoryDocsBtnを使用して画像ボタンにクリックリスナーを追加するにはどうすればよいですか?

以下はコードスニペットです。ご協力いただきありがとうございます。

主な活動クラス:

public class Home extends Activity {

  @Override
  protected void onCreate(final Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);

  /**
   * Setup the ViewFlow
   * w/TitleFlow------------------------------------------
   */
   ViewFlow viewFlow = (ViewFlow) findViewById(R.id.viewflow);
   DiffAdapter vfAdapter = new DiffAdapter(this);
   viewFlow.setAdapter(vfAdapter);

   TitleFlowIndicator indicator = (TitleFlowIndicator) findViewById(R.id.viewflowindic);
   indicator.setTitleProvider(vfAdapter);
   viewFlow.setFlowIndicator(indicator);
}

DiffAdapterクラス:注:膨張したビューは、このクラスの下部にあります。

public class DiffAdapter extends BaseAdapter implements TitleProvider {

private static final int VIEW1 = 0;
private static final int VIEW2 = 1;
private static final int VIEW_MAX_COUNT = VIEW2 + 1;
private final String[] names = { "DashBoard", "ToolBox" };

private LayoutInflater mInflater;

public DiffAdapter(Context context) {
mInflater = (LayoutInflater) context
    .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}

@Override(S)...............

@Override
public View getView(int position, View convertView, ViewGroup parent) {
int view = getItemViewType(position);
if (convertView == null) {
    switch (view) {
    case VIEW1:
    convertView = mInflater.inflate(R.layout.dashboard_view, null);
    break;
    case VIEW2:
    convertView = mInflater.inflate(R.layout.toolbox_view, null);
    break;
    }
}
return convertView;
}

ビューの1つのスニペット:dashboard_view.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:weightSum="1" >

<TableLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#10000000"
    android:stretchColumns="*" >

    <!-- Row 1 -->

    <TableRow android:layout_weight="1" >

        <RelativeLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1" >

            <ImageButton
                android:id="@+id/regulatoryDocsBtn"
                style="@style/dashBoardimageBtn"
                android:src="@drawable/ic_launcher_regulatory" />

            <TextView
                style="@style/dashBoardTxt"
                android:layout_below="@id/regulatoryDocsBtn"
                android:text="Regulatory Docs" />
        </RelativeLayout>
        .....
        </TableRow>
4

3 に答える 3

4

onClickxml のボタンにプロパティを追加して、実行するメソッドの名前を示すことができます。

メソッドにはパラメーターが必要Viewです。

例えば:

XML レイアウトの場合:

<Button android:id="@+id/testButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Click me!"
    android:onClick="testClick" />

アクティビティ コード:

public void testClick(View v) {
    // The code to be executed on click
}

それが役に立てば幸い。

于 2011-12-14T23:02:38.360 に答える
1

を使用してボタンを取得するだけです

ImageButton rdb = (ImageButton) findViewById(R.id.regulatoryDocsBtn);

それにリスナーを追加します。

rdb.setOnClickListener(new RdbOnClickListener());
...

class RdbOnClickListener implements OnClickListener {
    public void onClick(View v) {
         //do what you gotta do
    }
}

または単に:

rdb.setOnClickListener(new OnClickListener() {
    public void onClick(View v) {
         //do what you gotta do
    }
});

それはそれを行う必要があります。それはすべてドキュメントの例にあります:)

于 2011-12-14T22:51:23.077 に答える
0

Buttonその上でクリックリスナーを使用TextViewして書き込む代わりにTextView

于 2013-01-18T12:08:17.153 に答える