0

我正在我的主要活动中实现Pakerfeldts 的视图流(特别是“DiffViewFlowExample”),但我不知道如何将点击侦听器添加到我膨胀视图中的 ImageButtons。

那么如何向位于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;
}

视图之一的片段: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

可以onClick在xml中为按钮添加属性,表示要执行的方法名。

该方法必须有一个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 回答