我需要在EditText中插入一个URL图像,并将其保存到Myqsl。
这是我将代码列表浏览到本地服务器的代码:
checkButton=(Button) findViewById(R.id.browser);
checkButton.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
String url = "http://10.0.2.2/images/";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);
}
});
答案 0 :(得分:0)
如果您有图像的URL,那么您可以从服务器检索图像的位图。 然后你可以从Bitmap构建一个Drwable -
Drawable d =new BitmapDrawable(bitmap);
然后在EditText中设置背景
editText.setBackgroundDrawable(d);