Недавно я поигрался с генерацией кода qr, и после большого количества Google и помощи от членов переполнения стека я смог успешно сгенерировать его, используя API Google.
, но когда я нажал кнопку "назад"в эмуляторе и когда я снова нажимаю на приложение, изображение qr-кода исчезает ??
как сделать так, чтобы оно оставалось постоянным до тех пор, пока я снова не нажму кнопку "создать" для нового изображения Qr ??вот код для провайдеров ответов на мои вопросы и тех, кто борется за создание qr-изображений
package com.test2;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLConnection;
import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
public class Test2Activity extends Activity {
ImageView QRCode;
TextView MySite;
EditText text,text1;
Button genarate;
String textbox,textbox2;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
QRCode = (ImageView)findViewById(R.id.qrimage);
MySite = (TextView)findViewById(R.id.mysite);
genarate=(Button)findViewById(R.id.genarate);
genarate.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// TODO Auto-generated method stub
text=(EditText)findViewById(R.id.text);
text1=(EditText)findViewById(R.id.text1);
textbox=text.getText().toString();
textbox2=text1.getText().toString();
Bitmap bm = loadQRCode();
if(bm == null){
Toast.makeText(Test2Activity.this,
"Problem in loading QR Code1",
Toast.LENGTH_LONG).show();
}else{
QRCode.setImageBitmap(bm);
}
}
Bitmap loadQRCode(){
Bitmap bmQR = null;
InputStream inputStream = null;
try {
inputStream = OpenHttpConnection("http://chart.apis.google.com/chart?chs=400x400&cht=qr&chl="+ textbox +"--->"+ textbox2);
bmQR = BitmapFactory.decodeStream(inputStream);
inputStream.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return bmQR;
}
private InputStream OpenHttpConnection(String strURL) throws IOException{
InputStream is = null;
URL url = new URL(strURL);
URLConnection urlConnection = url.openConnection();
try{
HttpURLConnection httpConn = (HttpURLConnection)urlConnection;
httpConn.setRequestMethod("GET");
httpConn.connect();
if (httpConn.getResponseCode() == HttpURLConnection.HTTP_OK) {
is = httpConn.getInputStream();
}
}catch (Exception ex){
}
return is;
}
});
}
}
xml-код для этого действия
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<EditText
android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<EditText
android:id="@+id/text1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<requestFocus />
</EditText>
<Button
android:id="@+id/genarate"
android:layout_width="97dp"
android:layout_height="wrap_content"
android:text="genarate" />
<ImageView
android:id="@+id/qrimage"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:saveEnabled="true" android:visibility="visible"/>
<TextView
android:id="@+id/mysite"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
</ScrollView>