Basic4android中使用透明按钮

#Region  Project Attributes
	#ApplicationLabel: B4ATransparentButton
	#VersionCode: 1
	#VersionName:
	‘SupportedOrientations possible values: unspecified, landscape or portrait.
	#SupportedOrientations: unspecified
	#CanInstallToExternalStorage: False
#End Region

#Region  Activity Attributes
	#FullScreen: False
	#IncludeTitle: True
#End Region

Sub Process_Globals
	‘These global variables will be declared once when the application starts.
	‘These variables can be accessed from all modules.

End Sub

Sub Globals
	‘These global variables will be redeclared each time the activity is created.
	‘These variables can only be accessed from this module.

	Private Button1 As Button
	Dim cd As ColorDrawable
	Dim bmp As Bitmap 

End Sub

Sub Activity_Create(FirstTime As Boolean)
	‘Do not forget to load the layout file created with the visual designer. For example:
	Activity.LoadLayout("1")
	bmp.Initialize(File.DirAssets,"1.jpg")
	Activity.SetBackgroundImage(bmp)
	cd.Initialize (Colors.ARGB (100,0,0,0),5)
	Button1.Initialize("Button1")
	Button1.Background =cd

End Sub

Sub Activity_Resume

End Sub

Sub Activity_Pause (UserClosed As Boolean)

End Sub

Basic4android中使用透明按钮

时间: 2024-10-10 23:46:57

Basic4android中使用透明按钮的相关文章

设计趋势:网页设计中的幽灵按钮

幽灵按钮——那些透明的.可点击的物体——忽然间就变得无处不在.以狂风暴雨之势席卷正网页设计领域.谁能想到,像按钮这么简单的事物,能够改变我们看待网页设计的方式? 参考:预测网页设计趋势 什么是幽灵按钮? 幽灵按钮有着最简单的扁平外形——正方形.矩形.圆形.菱形——没有填充色,只有一条淡淡的轮廓.除了外框和文字,它完完全全(或者说几乎完全)透明.(因此得名“幽灵”) 这些按钮通常比网页上传统的可点击按钮大,也被置于显要位置,例如屏幕的正中央. 各种类型的网站(包括移动APP)中都能发现幽灵按钮的身

Basic4Android中ListView组建的演示

#Region Project Attributes #ApplicationLabel: ListViewTest #VersionCode: 20140625 #VersionName: 'SupportedOrientations possible values: unspecified, landscape or portrait. #SupportedOrientations: unspecified #CanInstallToExternalStorage: False #End R

flash cs6 透明按钮链接制作

as2.0和as3.0 超链接按钮制作及常用语言 =====  as2篇  ========================= 1.在所在flash图层新建一个图层,这里我们命名为“透明按钮”.并用矩形工具画一个与flash画面大小一致的矩形. 2.选择画出来的矩形,按F8键,将其转换为按键元件,这里我们随便给个名字. 3.将我们制作的按钮元件透明度调为0% 4.选择透明按钮,点右键选择动作(或直接按F9)进入动作面板: 在面板中写入代码如下: on(release){ getURL("http

iOS开发中如何保存按钮的状态

在iOS开发中我们经常会需要保存某个按钮的状态,比如很多设置选项中的UISwitch按钮的开关,比如一些按钮的选中与否等等,今天项目中有一个需求是要保存自动登录按钮的选中状态,想要实现这个功能,可以用归档来完成. 首先需求图: 我需要记录自动登录按钮的状态,若用户选择了下次自动登录,那么程序退出再次启动这个按钮仍然是选中状态. 首先,我们需要监听按钮的点击事件,因为在点击事件里面我们能够拿到按钮的状态. 通过下面代码,存储选中状态. - (IBAction)autologinClick:(UIB

Qt 设置透明按钮其实很简单

Qt 设置透明按钮其实很简单 [复制链接] QT控件设计  艺术人生 QT设置透明按钮 一定没有想到竟然是一句话 QPushButton *bt =new QPushButton(this); bt->setText("ok"); bt->move(200,100); bt->setFlat(true);//就是这句能够实现透明,真是意外的发现,希望对一些学习的朋友有点帮助 复制代码

Basic4Android中按日期排序文件

#Region Project Attributes #ApplicationLabel: SortByDateFileTest #VersionCode: 20140627 #VersionName: 'SupportedOrientations possible values: unspecified, landscape or portrait. #SupportedOrientations: unspecified #CanInstallToExternalStorage: False

如何在MFC界面开发中响应Button按钮的Down和Up事件

通过尝试有两种方案可以解决这个问题,第一种方案是通过PreTranslateMessage函数在调度消息之前对消息类型进行筛选,第二种方案是重载CButton类,在重载后的类CForTestButton中新增ON_WM_LBUTTONDOWN消息以及ON_WM_LBUTTONUP消息. 第一种方案 实现原理也挺简单,在消息调度函数PreTranslateMessage函数中拦截Button按钮的句柄,之后在对应大括号内调用相关功能块即可.核心源码如下: …… …… BOOL CTestButto

[转] c# 模拟Asp.net页面中的某个按钮的点击,向web服务器发出请求

在没有做题目中所述的内容的时候,感觉这应该是很简单的东西,但是当真正开始做的时候却发现,有很多问题现在在这里写出来,供和我一样水平不高的参考一下. 在写本文之前参照了一下文章 欢迎使用CSDN论坛阅读器 : CSDN Reader(附全部源代码) 最新版本:20070212 http://www.cnblogs.com/feiyun0112/archive/2006/09/20/509783.html C#通过webRequest保持在同一Session中Post数据 http://blog.c

Basic4Android中ProgressBar组建的演示

#Region Project Attributes #ApplicationLabel: ProgressBarTest #VersionCode: 20140626 #VersionName: 'SupportedOrientations possible values: unspecified, landscape or portrait. #SupportedOrientations: unspecified #CanInstallToExternalStorage: False #En