记录Google 开源库 zxing 使用
xml文件代码
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<TextView
android:id="@+id/content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"
android:textColor="#000"
android:layout_centerHorizontal="true"
android:layout_above="@+id/iv"
/>
<ImageView
android:id="@+id/iv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"/>
</RelativeLayout>
public class MainActivity extends AppCompatActivity implements View.OnClickListener,View.OnLongClickListener{
private ImageView iv;
private TextView content_text;
private static final String TAG = "MainActivity";
public String content;
public Bitmap bitmap;
public Bitmap Scale_bitmap;
public BitMatrix bitMatrix;
public Matrix matrix=new Matrix();
public int QRCode_Width=300;
public int QRCode_Height=300;