Android編輯信息界面,組合控制項的封裝

来源:https://www.cnblogs.com/ganchuanpu/archive/2018/03/18/8597397.html
-Advertisement-
Play Games

Github地址(完整Demo,歡迎下載) https://github.com/ganchuanpu/ItemGroup 效果圖 attrs.xml 獲取到各屬性 xml佈局文件 調用的activity ...


Github地址(完整Demo,歡迎下載)

https://github.com/ganchuanpu/ItemGroup

效果圖

組合控制項1.png

 

attrs.xml

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <resources>
 3     <declare-styleable name="ItemGroup">
 4         <!--標題的文字-->
 5         <attr name="title" format="string" />
 6         <!--標題的字體大小-->
 7         <attr name="title_size" format="dimension" />
 8         <!--標題的字體顏色-->
 9         <attr name="title_color" format="color" />
10         <!--輸入框的內容-->
11         <attr name="edt_content" format="string" />
12         <!--輸入框的字體大小-->
13         <attr name="edt_text_size" format="dimension" />
14         <!--輸入框的字體顏色-->
15         <attr name="edt_text_color" format="color" />
16         <!--輸入框提示的內容-->
17         <attr name="edt_hint_content" format="string" />
18         <!--輸入框的提示字體的字體顏色-->
19         <attr name="edt_hint_text_color" format="color" />
20         <!--輸入框是否可以編輯內容-->
21         <attr name="isEditable" format="boolean"/>
22         <!--向的右箭頭圖標是否可見-->
23         <attr name="jt_visible" format="boolean"/>
24         <!--item佈局的內邊距-->
25         <attr name="paddingLeft" format="dimension"/>
26         <attr name="paddingRight" format="dimension"/>
27         <attr name="paddingTop" format="dimension"/>
28         <attr name="paddingBottom" format="dimension"/>
29 
30         <attr name="drawable_left" format="reference" />
31         <attr name="drawable_right" format="reference" />
32         <attr name="line_color" format="color" />
33         <attr name="line_height" format="integer" />
34     </declare-styleable>
35 </resources>

獲取到各屬性

 1 private void initAttrs(Context context, AttributeSet attrs) {
 2         //標題的預設字體顏色
 3         int defaultTitleColor = context.getResources().getColor(R.color.item_group_title);
 4         //輸入框的預設字體顏色
 5         int defaultEdtColor = context.getResources().getColor(R.color.item_group_edt);
 6         //輸入框的預設的提示內容的字體顏色
 7         int defaultHintColor = context.getResources().getColor(R.color.item_group_edt);
 8 
 9         TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.ItemGroup);
10         String title = typedArray.getString(R.styleable.ItemGroup_title);
11         float paddingLeft = typedArray.getDimension(R.styleable.ItemGroup_paddingLeft, 15);
12         float paddingRight = typedArray.getDimension(R.styleable.ItemGroup_paddingRight, 15);
13         float paddingTop = typedArray.getDimension(R.styleable.ItemGroup_paddingTop, 5);
14         float paddingBottom = typedArray.getDimension(R.styleable.ItemGroup_paddingTop, 5);
15         float titleSize = typedArray.getDimension(R.styleable.ItemGroup_title_size, 15);
16         int titleColor = typedArray.getColor(R.styleable.ItemGroup_title_color, defaultTitleColor);
17         String content = typedArray.getString(R.styleable.ItemGroup_edt_content);
18         float contentSize = typedArray.getDimension(R.styleable.ItemGroup_edt_text_size, 13);
19         int contentColor = typedArray.getColor(R.styleable.ItemGroup_edt_text_color, defaultEdtColor);
20         String hintContent = typedArray.getString(R.styleable.ItemGroup_edt_hint_content);
21         int hintColor = typedArray.getColor(R.styleable.ItemGroup_edt_hint_text_color, defaultHintColor);
22         //預設輸入框可以編輯
23         boolean isEditable = typedArray.getBoolean(R.styleable.ItemGroup_isEditable, true);
24         //向右的箭頭圖標是否可見,預設可見
25         boolean showJtIcon = typedArray.getBoolean(R.styleable.ItemGroup_jt_visible, true);
26         typedArray.recycle();
27 
28         //設置數據
29         //設置item的內邊距
30         itemGroupLayout.setPadding((int) paddingLeft, (int) paddingTop, (int) paddingRight, (int) paddingBottom);
31         titleTv.setText(title);
32         titleTv.setTextSize(titleSize);
33         titleTv.setTextColor(titleColor);
34 
35         contentEdt.setText(content);
36         contentEdt.setTextSize(contentSize);
37         contentEdt.setTextColor(contentColor);
38         contentEdt.setHint(hintContent);
39         contentEdt.setHintTextColor(hintColor);
40         contentEdt.setFocusableInTouchMode(isEditable); //設置輸入框是否可以編輯
41         contentEdt.setLongClickable(false); //輸入框不允許長按
42         jtRightIv.setVisibility(showJtIcon ? View.VISIBLE : View.GONE);  //設置向右的箭頭圖標是否可見
43 }

xml佈局文件

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     xmlns:app="http://schemas.android.com/apk/res-auto"
 4     xmlns:tools="http://schemas.android.com/tools"
 5     android:layout_width="match_parent"
 6     android:layout_height="match_parent"
 7     android:orientation="vertical"
 8     tools:context="com.zx.itemgroup.MainActivity">
 9 
10     <com.zx.itemgroup.ItemGroup
11         android:id="@+id/name_ig"
12         android:layout_width="match_parent"
13         android:layout_height="wrap_content"
14         app:edt_hint_content="請輸入姓名"
15         app:jt_visible="false"
16         app:paddingLeft="15dp"
17         app:title="姓名" />
18 
19     <com.zx.itemgroup.ItemGroup
20         android:id="@+id/id_card_ig"
21         android:layout_width="match_parent"
22         android:layout_height="wrap_content"
23         app:edt_hint_content="請輸入身份證號"
24         app:jt_visible="false"
25         app:paddingLeft="15dp"
26         app:title="身份證" />
27 
28     <com.zx.itemgroup.ItemGroup
29         android:id="@+id/select_birthday_ig"
30         android:layout_width="match_parent"
31         android:layout_height="46dp"
32         app:edt_hint_content="請選擇出生日期"
33         app:isEditable="false"
34         app:paddingLeft="15dp"
35         app:title="出生日期" />
36 
37     <com.zx.itemgroup.ItemGroup
38         android:id="@+id/select_city_ig"
39         android:layout_width="match_parent"
40         android:layout_height="46dp"
41         app:edt_hint_content="請選擇您所在的城市"
42         app:isEditable="false"
43         app:paddingLeft="15dp"
44         app:title="所在城市" />
45 </LinearLayout>

調用的activity

 1 /**
 2  * 組合控制項封裝(提交信息及編輯信息界面及功能)
 3  */
 4 public class MainActivity extends AppCompatActivity {
 5 
 6     private Context mContext;
 7     private ItemGroup nameIG, idCardIG, birthdayIG, cityIG;
 8 
 9     @Override
10     protected void onCreate(Bundle savedInstanceState) {
11         super.onCreate(savedInstanceState);
12         setContentView(R.layout.activity_main);
13 
14         mContext = this;
15         initView();
16     }
17 
18     private void initView() {
19         nameIG = (ItemGroup) findViewById(R.id.name_ig);
20         idCardIG = (ItemGroup) findViewById(R.id.id_card_ig);
21         birthdayIG = (ItemGroup) findViewById(R.id.select_birthday_ig);
22         cityIG = (ItemGroup) findViewById(R.id.select_city_ig);
23         birthdayIG.setItemOnClickListener(new ItemGroup.ItemOnClickListener() {
24             @Override
25             public void onClick(View v) {
26                 Toast.makeText(mContext, "點擊了選擇出生日期", Toast.LENGTH_SHORT).show();
27             }
28         });
29         cityIG.setItemOnClickListener(new ItemGroup.ItemOnClickListener() {
30             @Override
31             public void onClick(View v) {
32                 Toast.makeText(mContext, "點擊了選擇城市", Toast.LENGTH_SHORT).show();
33             }
34         });
35     }
36 }

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 2 伺服器安裝 運行安裝程式後,首先進入 SQL Server 安裝中心。選擇左側導航樹中的“安裝”菜單項。 圖2-1 SQL Server 安裝中心 在右側菜單中點擊“全新 SQL Server 獨立安裝或向現有安裝添加功能”,進入安裝程式支持規則對話框。 圖2-2 安裝程式支持規則 通過檢查後,... ...
  • 1.配置文件用法 啟動redis的時候指定配置⽂件路徑: ./redis server /path/to/redis.conf 不指定配置⽂件的時候使⽤內置配置⽂件啟動,此⽅法僅適⽤於開發和測試。 2.include配置配置 ⽤於引⼊其他配置⽂件,配置集群的時候⽤於引⼊公共配置⽤法如下: inclu ...
  • 周五同事監控報警,有個MySQL從庫複製狀態異常,讓我幫忙排查下,經過排查發現是MySQL5.6並行複製的一個Bug所致,具體處理過程如下: 一、錯誤信息 登錄mysql從庫伺服器,檢查複製狀態 mysql錯誤日誌內容如下 二、錯誤原因 從錯誤日誌字面意思理解,出現這個錯誤是因為資料庫開啟了並行複製 ...
  • 本文內容: MongoDB的介紹 MongoDB服務端的啟動 MongoDB客戶端連接 SQL與MongoDB相關概念解釋 什麼是BSON 資料庫操作 集合操作 文檔操作 測試環境:win10 軟體版本:3.6.2 首發時間:2018-03-18 15:38 MongoDB的介紹: MongoDB ...
  • 編譯的時候 ,編譯器會把方法前面的IBAction替換成void,把屬性前面的IBOutlet移除掉,因為這些都 只是Interface Builder的標誌而已。這個IBAction方法會被UI控制項的相應事件引發,並傳入這個UI控制項作為參數,因為我們指定傳入的參數是id類型的,所以可以傳入任意類型 ...
  • 閱讀目錄 常用 搜索、導航 編寫代碼 重構 一、常用 代碼保存 描述:該操作可以用於在書寫代碼的過程中進行快速保存 調用:菜單欄 File -> Save All 快捷鍵:Ctrl + S 最大化/最小化代碼編輯視窗 描述:隱藏所有工具視窗,代碼編輯視窗會最大化/最小化 調用:菜單欄 Window ...
  • 簡要:本系列文章講會對expo進行全面的介紹,本人從2017年6月份接觸expo以來,對expo的研究斷斷續續,一路走來將近10個月,廢話不多說,接下來你看到內容,講全部來與官網 我猜去全部機翻+個人修改補充+demo測試的形式,對expo進行一次大補血!歡迎加入expo興趣學習交流群:597732 ...
  • 前言: 最近想要在酷安網上傳apk,註冊開發者的時候需要申請驗證,驗證需要兩個apk,一個是自己的apk(需要簽名),另外一個則是下載酷安的模板生成的一個簽名包(使用的簽名要與之前的簽名自己的apk一樣),在簽名包的生成之中,gradle報了幾條錯誤,之後經過漫長的百度,總算是完美解決,便是把這個記 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...