直播電商平臺開發,常用基礎控制元件-單選(複選)按鈕-圖片檢視
直播電商平臺開發,常用基礎控制元件-單選(複選)按鈕-圖片檢視
xml檔案
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android=" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" > <TextView android:layout_width="100px" android:layout_height="wrap_content" android:height="50px" android:text=" 姓 名 : " /> <EditText android:id="@+id/et_name" android:layout_width="300px" android:layout_height="wrap_content" android:inputType="text" /> </LinearLayout> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" > <TextView android:layout_width="100px" android:layout_height="wrap_content" android:height="50px" android:text=" 年 齡 : " /> <EditText android:id="@+id/et_age" android:layout_width="300px" android:layout_height="wrap_content" android:inputType="text" /> </LinearLayout> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" > <TextView android:layout_width="100px" android:layout_height="wrap_content" android:height="50px" android:text=" 專 業 : " /> <RadioGroup android:id="@+id/radioGroup1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" > <RadioButton android:id="@+id/rb1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="電腦科學與技術" /> <RadioButton android:id="@+id/rb2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="軟體工程" /> <RadioButton android:id="@+id/rb3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="網路工程" package com.example.shiyan0401; import android.os.Bundle; import android.app.Activity; import android.view.Menu; import android.view.View; import android.widget.Button; import android.widget.CheckBox; import android.widget.EditText; import android.widget.GridLayout; import android.widget.RadioButton; import android.widget.RadioGroup; import android.widget.TextView; import android.view.View. OnClickListener; import android.widget.RadioGroup.OnCheckedChangeListener;
MainActivity.java
public class MainActivity extends Activity { //宣告 RadioGroup zy; EditText etname,etage; TextView tvshow; CheckBox cb1,cb2,cb3,cb4,cb5,cb6; CheckBox cb[]=new CheckBox[6]; Button bt1,bt2; GridLayout g1; String name,age,specialty,shobby; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); //獲取控制元件物件 bt1 = (Button) findViewById(R.id.bt_login); bt2 = (Button) findViewById(R.id.bt_reset); //核取方塊 cb[0] = (CheckBox) findViewById(R.id.cb1); cb[1] = (CheckBox) findViewById(R.id.cb2); cb[2] = (CheckBox) findViewById(R.id.cb3); cb[3] = (CheckBox) findViewById(R.id.cb4); cb[4] = (CheckBox) findViewById(R.id.cb5); cb[5] = (CheckBox) findViewById(R.id.cb6); g1 = (GridLayout) findViewById(R.id.g1_hobby); etname = (EditText) findViewById(R.id.et_name); etage = (EditText) findViewById(R.id.et_age); tvshow = (TextView) findViewById(R.id.tv_show); zy = (RadioGroup) findViewById(R.id.radioGroup1); zy.setOnCheckedChangeListener(new OnCheckedChangeListener() { @Override public void onCheckedChanged(RadioGroup group, int checkedId) { // TODO Auto-generated method stub RadioButton r = (RadioButton) zy.getChildAt(checkedId); }
以上就是 直播電商平臺開發,常用基礎控制元件-單選(複選)按鈕-圖片檢視,更多內容歡迎關注之後的文章
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2950951/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 單選多選按鈕
- 直播電商平臺開發,Layui給標籤新增點選事件UI事件
- 快速搭建直播平臺,點選按鈕(Button)後改變顏色
- 直播電商平臺開發,Android | 圖片縮放、自動居中Android
- [開發教程] 第17講:Bootstrap單選按鈕boot
- 點選按鈕實現圖片切換效果
- 第 7 章 圖示選單按鈕元件元件
- Java選擇框和單選按鈕Java
- 炫酷實用的jQuery外掛 涵蓋選單、按鈕、圖片jQuery
- 直播平臺開發,點開大圖後,任意點選圖片位置都可關閉當前放大效果
- js單選按鈕radio選中值JS
- 窗體(文字框,按鈕,單選按鈕,標籤)
- Android UI控制元件系列:RadioButton(單選按鈕)AndroidUI控制元件
- 直播平臺開發,伸縮式選單,隨意調整選單欄橫向的大小
- 直播商城系統原始碼,點選按鈕 儲存頁面為圖片到本地原始碼
- 直播帶貨原始碼,圖片左上角或右上角點選返回按鈕原始碼
- app直播原始碼,uniapp點選按鈕 儲存頁面為圖片到本地APP原始碼
- 短視訊平臺原始碼,長按視訊、對話方塊彈出操作可選按鈕原始碼
- radio 單選按鈕 選中多個
- [開發教程]第23講:Bootstrap帶下拉選單的按鈕boot
- 直播系統原始碼,單選按鈕和核取方塊原始碼
- Tkinter (11) 選單按鈕部件 Menubutton
- 配置選單按鈕掃一掃
- 單選按鈕美化效果程式碼
- 『心善淵』Selenium3.0基礎 — 14、Selenium對單選和多選按鈕的操作
- 短視訊開發,點選按鈕Button,更換背景顏色
- Android處理按鈕重複點選Android
- jQuery如何判斷單選按鈕是否被選中jQuery
- 直播平臺開發,Clip-path實現按鈕流動邊框動畫動畫
- 直播電商平臺開發,釋出多圖片上傳到伺服器並實現圖片預覽功能伺服器
- HTML input radio 單選按鈕HTML
- 單選按鈕和核取方塊
- HTML input radio單選按鈕HTML
- Chrome 22亮相 全新選單按鈕曝光Chrome
- radio單選按鈕美化效果
- jQuery操作單選按鈕程式碼示例jQuery
- 獲取選中表單按鈕的值
- Bootstrap系列 -- 34. 按鈕下拉選單boot