canvas教程

Android仿微信二维码和条形码(2)

字号+ 作者:H5之家 来源:H5之家 2016-11-11 10:00 我要评论( )

xml version="1.0" encoding="utf-8"LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="v

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:background="#ffffff"> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" /> <Button android:id="@+id/button1" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="条形码" /> <Button android:id="@+id/button2" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="二维码" /> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" > <ImageView android:id="@+id/imageView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:scaleType="fitXY" android:src="@drawable/ic_launcher" /> </RelativeLayout> </LinearLayout>

图片美工做下处理。貌似需要做一个描边。png透明背景 

在加两个方法

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • Android自定义组件系列【9】Canvas绘制折线图

    Android自定义组件系列【9】Canvas绘制折线图

    2016-11-11 11:00

  • 微信小程序实时开发工具 WEPT 正式发布了

    微信小程序实时开发工具 WEPT 正式发布了

    2016-11-10 18:01

  • 学习Canvas 画圆锥,并且作为一个统计图

    学习Canvas 画圆锥,并且作为一个统计图

    2016-11-05 14:03

  • Android中SurfaceView和view画出触摸轨迹

    Android中SurfaceView和view画出触摸轨迹

    2016-11-02 12:00

网友点评
m