Button簡單例項1

2022-02-26 16:32:36 字數 3508 閱讀 1644

1.xml按鈕定義

<

relativelayout

xmlns:android

=""android:layout_width

="match_parent"

android:layout_height

="match_parent"

>

<

button

android:id

="@+id/button1"

android:layout_width

="wrap_content"

android:layout_height

="wrap_content"

android:layout_marginleft

="50dp"

android:layout_marginright

="50dp"

android:text

="第乙個自定義按鈕"

android:textcolor

="#ff0000"

/>

<

button

android:id

="@+id/button2"

android:layout_width

="match_parent"

android:layout_height

="wrap_content"

android:layout_margintop

="100dp"

android:background

="#0000ff"

android:fontfamily

="宋體"

android:text

="第二個中文按鈕"

android:textcolor

="#ffffff"

/>

relativelayout

>

顯示:

2.後台**建立控制項並註冊事件

import

android.annotation.suppresslint;

import

import

import

android.os.bundle;

import

android.view.view;

import

android.widget.button;

import

android.widget.linearlayout;

/*** 簡單動態產生按鈕,並繫結事件

* *

@author

zhongyang *

*/public

class button_two extends

activity

//產生布局面板

@suppresslint("newapi")

private

void

createparentlayout()

//新增按鈕並註冊事件

@suppresslint("newapi")

private

void

createbutton()

//按鈕點選事件方法

class btnonelistener implements

view.onclicklistener }}

顯示:

3.xml建立控制項 註冊click事件

<

linearlayout

xmlns:android

=""android:layout_width

="match_parent"

android:layout_height

="match_parent"

android:orientation

="vertical"

>

<

textview

android:id

="@+id/txtone"

android:layout_width

="match_parent"

android:layout_height

="wrap_content"

android:layout_margintop

="30px"

android:background

="#000000"

android:paddingbottom

="20px"

android:paddingleft

="20px"

android:paddingtop

="20px"

android:text

="按鈕點選之前"

android:textcolor

="#ffffff"

/>

<

button

android:id

="@+id/btnone"

android:layout_width

="100dp"

android:layout_height

="50dp"

android:layout_margintop

="30px"

android:onclick

="btnoneclick"

android:text

="按鈕one"

android:textcolor

="#00ff00"

android:textsize

="20px"

/>

linearlayout

>

import

import

android.content.res.colorstatelist;

import

android.os.bundle;

import

android.view.view;

import

android.widget.button;

import

android.widget.textview;

/*** 訪問布局檢視中的按鈕並註冊事件

* @author

zhongyang *

*/public

class buttonthree extends

activity

//按鈕點選事件

public

void

btnoneclick(view view)

}

顯示:

tensorflow 簡單例項1

import tensorflow as tf import numpy as np create data x data np.random.rand 100 astype np.float32 y data 0.5 x data 1.3 tensorflow中的變數,這些變數在每次sess迭代時...

IOS 按鈕(button)用法與屬性例項

ios 按鈕 button 用法與屬性例項 void togglebutton uibutton button else void viewdidload 順便提一句 button 初始化的時候,如果不是alloc初始化,是 uibutton buttonwithtype uibuttontyper...

IOS學習1 動態新增Button

動態新增button的效果就是點選之後,生成乙個按鈕,並為按鈕新增點選的方法。1 在xib檔案上拖拽新增乙個button,標題為 新增button。2 按住ctrl鍵拖拽到addbuttonviewcontroller.m檔案空白處,生成ibaction,填充 後如下 3 動態生成的button點選...