我有一个简单的表格来充值帐户.在这个帐户中,我正在通过条形码阅读器读取卡号,但是这个条形码阅读器在将值放入后立即调用提交功能.我想阻止条形码阅读器调用提交功能,因为在提交之前我还有其他字段需要填写.我想知道如何阻止条形码阅读器调用提交函数j查询.
我已经尝试过seekbar normal task来显示从1到12的时间,但我几乎没有什么不同的要求。

请一些机构可以帮助我完全像这样获得seekbar显示值。
我正在使用我的Android应用程序进行Facebook登录集成.当我登录时,它会向我显示"您的应用程序已禁用Oauth客户端流程"的消息.
我的代码是这样的:
package com.example.jiffy;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.widget.TextView;
import com.facebook.*;
import com.facebook.Session.NewPermissionsRequest;
import com.facebook.Session.OpenRequest;
import com.facebook.Session.StatusCallback;
import com.facebook.model.*;
public class JiffyFacebookLoginActivity extends Activity implements
StatusCallback{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
OpenRequest open = new OpenRequest(this);
open.setLoginBehavior(SessionLoginBehavior.SUPPRESS_SSO);
open.setPermissions(Arrays.asList(new String[]{"email"}));
open.setCallback(this);
Session s = new Session(this);
s.openForPublish(open);
}
@Override
public void call(Session session, SessionState state, Exception
exception) {
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent …Run Code Online (Sandbox Code Playgroud) 我有一个单独的Web服务类,其中我只传递响应方法,url和数组列表,这些数据是发出请求和获取响应所必需的.我在这样的登录活动中调用此Web服务
JifWebService webServices = new JifWebService();
webServices.Execute(RequestMethod.POST,
Jifconstant.LOGIN_URL, null, logindata);
loginResponse = webServices.getResponse();
loginResponseCode = webServices.getResponseCode();
Run Code Online (Sandbox Code Playgroud)
在此登录数据中是包含一些数据的数组列表.现在我想使用异步任务在后台调用此Web服务.但我只是没弄错.我的Web服务逻辑是用完全不同的java文件编写的,它的工作正常,但我想在异步任务中调用我的Web服务方法.enter code here
android ×3
barcode ×1
drupal-7 ×1
javascript ×1
jquery ×1
oauth ×1
php ×1
seekbar ×1
web-services ×1