在做Android開發(fā)的時候,會遇到動態(tài)添加標(biāo)簽讓用戶選擇的功能,所以自己寫了個例子,運行效果圖如下。
標(biāo)簽可以左右滑動進(jìn)行選擇,點擊的時候,會彈出toast提示選擇或者取消選擇了哪個標(biāo)簽。通過動態(tài)添加TextView作為標(biāo)簽,并給TextView設(shè)置背景,通過selector選擇器改變其背景顏色,來確定是否處于選中狀態(tài)。
代碼如下所示:
1、標(biāo)簽的布局文件,我在標(biāo)簽里只設(shè)置了一個TextView
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="10dp" android:background="@drawable/mark_select" android:enabled="false" android:padding="10dp" android:text="TextView" /> </LinearLayout>
文章標(biāo)題:Android實現(xiàn)動態(tài)添加標(biāo)簽及其點擊事件-創(chuàng)新互聯(lián)
本文來源:http://www.rwnh.cn/article24/ceiice.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供軟件開發(fā)、網(wǎng)站內(nèi)鏈、做網(wǎng)站、企業(yè)網(wǎng)站制作、靜態(tài)網(wǎng)站、動態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)