我正在寻找访问我的网站数据库并通过编辑文本和 onClick 向其中添加用户。我已经完成了大部分应用程序。从 PC 上执行此操作非常简单,因为我只需在 URL 的适当位置添加用户编号,然后将它们添加到数据库中。
这是添加了用户的 URl
http://something.com/user/426561?token=dYG8hW5TY4LBU8jfPb10D3IcsSx8RTo6
我想通过使用编辑文本在 426561 所在的位置插入一个数值。这是我到目前为止所拥有的,我的网站抛出了一个无效的用户号码错误,这是应该做的。
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
edttext= (EditText)findViewById(R.id.editText1);
Button tutorial2 = (Button) findViewById(R.id.button1);
tutorial2.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.putExtra("edttext", edttext.getText().toString());
intent.setData(Uri.parse("http://something.com/user/= edttext?token=dYG8hW5TY4LBU8jfPb10D3IcsSx8RTo6"));
startActivity(intent);
}
});
我已添加到 URL,但显然我没有正确执行。有什么想法吗?