直播電商平臺開發,常用基礎控制元件-單選(複選)按鈕-圖片檢視
直播電商平臺開發,常用基礎控制元件-單選(複選)按鈕-圖片檢視
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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 單選多選按鈕
- 直播電商平臺開發,Android | 圖片縮放、自動居中Android
- 直播電商平臺開發,Layui給標籤新增點選事件UI事件
- 快速搭建直播平臺,點選按鈕(Button)後改變顏色
- [開發教程] 第17講:Bootstrap單選按鈕boot
- radio 單選按鈕 選中多個
- HTML input radio單選按鈕HTML
- HTML input radio 單選按鈕HTML
- app直播原始碼,uniapp點選按鈕 儲存頁面為圖片到本地APP原始碼
- 『心善淵』Selenium3.0基礎 — 14、Selenium對單選和多選按鈕的操作
- Android處理按鈕重複點選Android
- 直播帶貨原始碼,圖片左上角或右上角點選返回按鈕原始碼
- 直播商城系統原始碼,點選按鈕 儲存頁面為圖片到本地原始碼
- 短視訊平臺原始碼,長按視訊、對話方塊彈出操作可選按鈕原始碼
- 設定radio單選按鈕預設選中
- JavaScript獲取選中radio單選按鈕值JavaScript
- 直播平臺開發,點開大圖後,任意點選圖片位置都可關閉當前放大效果
- 配置選單按鈕掃一掃
- Tkinter (11) 選單按鈕部件 Menubutton
- Tkinter (15) 單選按鈕部件 Radiobutton
- [開發教程]第23講:Bootstrap帶下拉選單的按鈕boot
- 直播系統原始碼,單選按鈕和核取方塊原始碼
- 直播平臺開發,伸縮式選單,隨意調整選單欄橫向的大小
- 短視訊開發,點選按鈕Button,更換背景顏色
- win10開始選單電源按鈕增加休眠設定方法Win10
- 單選按鈕和核取方塊
- CSS3 美化radio單選按鈕CSSS3
- Chrome 22亮相 全新選單按鈕曝光Chrome
- 直播電商平臺開發,釋出多圖片上傳到伺服器並實現圖片預覽功能伺服器
- HTML 單選按鈕實現 (性別選擇)(解讀)HTML
- android短視訊開發,點選分享按鈕生成分享連結Android
- VBA 控制元件學習筆記(按鈕點選事件)控制元件筆記事件
- Tkinter (30) 選單按鈕部件 ttk.Menubutton
- Tkinter (34) 單選按鈕部件 ttk.Radiobutton
- jquery製作圖片瀑布流點選按鈕載入更多內容jQuery
- 直播平臺開發,Clip-path實現按鈕流動邊框動畫動畫
- 短視訊軟體開發,按鈕側滑顯示各個選項
- 視訊直播app原始碼,點選圖片放大再點選縮小APP原始碼