Android自定义View设定到FrameLayout布局中实现多组件显示的方法 分享

Android自定义View设定到FrameLayout布局中实现多组件显示的方法 分享,第1张

概述如果想在自定义的View上面显示Button等View组件需要完成如下任务  1.在自定义View的类中覆盖父类的构造(注意是2个参数的)复制代码代码如下:  publicclassMyView2extendsView{

如果想在自定义的VIEw上面显示button 等VIEw组件需要完成如下任务

  1.在自定义view的类中覆盖父类的构造(注意是2个参数的)
复制代码 代码如下:
  public class MyVIEw2 extends VIEw{

  public MyVIEw2(Context context,AttributeSet att)

  {super(context,att);

  }

  public voID onDraw(Canvas c)

  { // 这里绘制你要的内容

  }

  }

  2.定义布局文件
复制代码 代码如下:
< ?xml version="1.0" enCoding="utf-8"?>

  < FrameLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"

  androID:orIEntation="vertical"

  androID:layout_wIDth="fill_parent"

  androID:layout_height="fill_parent"

  >

  < com.lovose.MyVIEw2

  androID:ID="@+ID/VIEw01"

  androID:layout_wIDth="fill_parent"

  androID:layout_height="fill_parent"

  >

  < /com.lovose.MyVIEw2>

  < absoluteLayout androID:ID="@+ID/absoluteLayout01" androID:layout_wIDth="wrap_content" AndroID:layout_height="wrap_content">

  < button androID:text="button01" androID:ID="@+ID/button01" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:layout_x="100dip" AndroID:layout_y="100dip">< /button>

  < /absoluteLayout>

  < /FrameLayout>

  //哈哈,你可以任意定义UI的显示了

总结

以上是内存溢出为你收集整理的Android自定义View设定到FrameLayout布局中实现多组件显示的方法 分享全部内容,希望文章能够帮你解决Android自定义View设定到FrameLayout布局中实现多组件显示的方法 分享所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1141470.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存