按钮OnClicklistener来自动态生成按钮

时间:2016-01-07 17:19:27

标签: android json android-layout button onclicklistener

我在为运行时生成的按钮构建正确的OnClicklistener时遇到问题。我在stackoverflow上发现了一些线程,但经过多次尝试后我都无法正常工作。

我有一个方法,用左边的#34;列"构建一个带有TextView的GUI。在右边"列" x按钮。每个Button都有一个应该由onClick打开的其他链接。在运行时创建链接之前,我不知道该链接。

这里我的代码与我的实际尝试。但在这种情况下,我每次只得到最后生成的按钮的链接。如果我点击第一个,第二个....它每次都是相同的链接。

希望有一个解决方案!

  private void createNewView (String JsonInputBeacon, String JsonInputConfig){

    TableLayout tableLayout = new TableLayout(this);
    tableLayout.setLayoutParams(new TableRow.LayoutParams(TableRow.LayoutParams.MATCH_PARENT, TableRow.LayoutParams.MATCH_PARENT));
    tableLayout.setStretchAllColumns(true);

    try {
        final JSONArray jsonArrayBeacon = new JSONArray(JsonInputBeacon);
        final JSONArray jsonArrayConfig = new JSONArray(JsonInputConfig);


        int Patientencounter = 1;

        for(int JsonObjectCounterBeacon = 0; JsonObjectCounterBeacon < jsonArrayBeacon.length(); JsonObjectCounterBeacon ++ ){
            final JSONObject objectBeacon = jsonArrayBeacon.getJSONObject(JsonObjectCounterBeacon);

            TableRow row = new TableRow(this);
            TextView outputLeft = new TextView(this);
            outputLeft.setText("Patient " + Patientencounter + ":\n" + "Name: " + objectBeacon.getString("surname") + ", " + objectBeacon.getString("firstName") + "\n" + "Geb-Datum: " + objectBeacon.getString("birthdate"));

            row.addView(outputLeft);

            for (int JsonObjectCounterConfig = 0; JsonObjectCounterConfig < jsonArrayConfig.length(); JsonObjectCounterConfig++){
                final JSONObject objectConfig = jsonArrayConfig.getJSONObject(JsonObjectCounterConfig);

                TableRow rowRight = new TableRow(this);
                Button buttonRight = new Button(getApplicationContext());
                buttonRight.setText(objectConfig.getString("name"));
                final String myURL = objectConfig.getString("link");

                buttonRight.setOnClickListener(new View.OnClickListener() {
                    @Override
                    public void onClick(View v) {
                        Intent browserIntent = new Intent(Intent.ACTION_VIEW,Uri.parse(myURL));
                        startActivity(browserIntent);
                    }
                });

                rowRight.addView(buttonRight);
                row.addView(rowRight);
            }

            tableLayout.addView(row);

            Patientencounter +=1;
        }

    } catch (JSONException e) {
        e.printStackTrace();
    }
    setContentView(tableLayout);
}

2 个答案:

答案 0 :(得分:1)

  

但是在这种情况下,我每次只得到最后生成的链接   按钮。如果我点击第一个,第二个....它每次都是   相同的链接

因为myURL包含由for-loop的最后一次迭代分配的值。

使用setTag/getTag的{​​{1}}方法根据buttonRight点击获取网址。像:

使用Button设置值:

setTag

并使用final String myURL = objectConfig.getString("link"); buttonRight.setTag(myURL); 方法的myURL参数获取v值:

onClick

答案 1 :(得分:0)

将按钮的标记设置为URI,然后从传入onclick方法的视图中访问标记。