立即扫描或立即生成QR码按钮?

时间:2018-01-21 20:31:50

标签: java android generator qr-code barcode-scanner

所以,我想在我的应用程序中使用这样的按钮:

Scan Now or Generate now Button

我不知道如何在android-studio中为按钮添加代码,而我只有扫描程序代码。我不知道如何将2个函数放在同一个项目中。我该怎么办?有人能帮我吗?

1 个答案:

答案 0 :(得分:0)

听起来你需要添加一个函数来处理OnClick事件。 The Android documentation has a nice example on how to set and OnClick listener

<Button
 android:id="@+id/button_id"
 android:layout_height="wrap_content"
 android:layout_width="wrap_content"
 android:text="@string/self_destruct" />
public class MyActivity extends Activity {
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.content_layout_id);

        final Button button = findViewById(R.id.button_id);
        button.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                // Code here executes on main thread after user presses button
                // This should be where you add your button logic.
            }
        });
     }
}