首頁 收藏 QQ群
 網(wǎng)站導航

ZNDS智能電視網(wǎng) 推薦當貝市場

TV應用下載 / 資源分享區(qū)

軟件下載 | 游戲 | 討論 | 電視計算器

綜合交流 / 評測 / 活動區(qū)

交流區(qū) | 測硬件 | 網(wǎng)站活動 | Z幣中心

新手入門 / 進階 / 社區(qū)互助

新手 | 你問我答 | 免費刷機救磚 | ROM固件

查看: 13888|回復: 0
上一主題 下一主題
[教程]

Android 基本界面-文本編輯控件

[復制鏈接]
跳轉到指定樓層
樓主
發(fā)表于 2013-8-28 16:30 | 只看該作者 回帖獎勵 |倒序瀏覽 |閱讀模式
7 1 TextView   
     
一般用來文本展示,繼承自,在包中。   
   
       他的常用子類有。   
   
       常用屬性設置:   
       android:text=“”         文字顯示   
       android:autoLink=””  鏈接類型。Web網(wǎng)址,email郵件,phone電話,map地圖。Linkify。   
     
       鏈接狀態(tài)時,Web情況可直接調用瀏覽器進行瀏覽。Email直接調用手機的Email軟件,phone轉到撥打電話頁面。   
   
        2   
     
上面的圖為AutoCompleteTextView和MultiAutoCompleteTextView   
   
        帶提示的輸入框,繼承自,在包中。   
        和都是自動提示,一個是單選,一個多選。   
常用屬性設置:   
        輸入幾個字符時提示   
   
        就是一個帶自動提示的,當輸入字符時,會出現(xiàn)提示窗口,點擊選擇即可。首先在中定義一個,然后需要在設置數(shù)據(jù)源就可以了。的構造方法三個參數(shù)為:上下文的,每行的布局,數(shù)據(jù)源。   
   
   
  1. this.autoCompleteTextView = (AutoCompleteTextView) super.findViewById(R.id.autoCompleteTextView);   
    ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this, R.layout.arrayadapte_textview, CITY_NAMES);   
    this.autoCompleteTextView.setAdapter(arrayAdapter);
復制代碼
和的類似,也是帶有提示的輸入框。區(qū)別在于可以連續(xù)提示,選擇一個提示項后會自動添加一個分隔符,在輸入時繼續(xù)提示。則屬于單選模式的。   
   
        使用時需要設置分隔符類其他與一樣。   
   
   
  1. this.multiAutoCompleteTextView.setTokenizer(new MultiAutoCompleteTextView.CommaTokenizer());
復制代碼
3 TextSwitcher   
   
        文字切換。繼承自在包中。   
        使用方法設置動畫。   
        例子,設置的動畫,并使用數(shù)字時鐘更改的字符串   
   
   
  1. public class SwitcherActivity extends Activity implements ViewSwitcher.ViewFactory, View.OnClickListener {   
       
       
    private Button buttonChangeText;   
       
    private TextSwitcher myTextSwitcher;   
       
    private DigitalClock myDigitalClock;   
       
       
    @Override   
       
    protected void onCreate(Bundle savedInstanceState) {   
       
    super.onCreate(savedInstanceState);   
       
    super.setContentView(R.layout.switcher);   
       
       
    this.buttonChangeText = (Button) super.findViewById(R.id.buttonChangeText);   
       
    this.myTextSwitcher = (TextSwitcher) super.findViewById(R.id.myTextSwitcher);   
       
    this.myDigitalClock = (DigitalClock) super.findViewById(R.id.myDigitalClock);   
       
    this.buttonChangeText.setOnClickListener(this);   
       
    this.myTextSwitcher.setFactory(this);   
       
       
    this.myTextSwitcher.setInAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_in));   
       
    this.myTextSwitcher.setOutAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_out));   
       
       
    }   
       
       
    @Override   
       
    public View makeView() {   
       
    TextView textView = new TextView(this);   
       
    textView.setGravity(Gravity.TOP | Gravity.CENTER_HORIZONTAL);   
       
    textView.setTextSize(36);   
       
    return textView;   
       
    }   
       
       
    @Override   
       
    public void onClick(View v) {   
       
    this.myDigitalClock.addTextChangedListener(textWatcher);   
       
    }   
       
       
    private android.text.TextWatcher textWatcher = new android.text.TextWatcher() {   
       
       
    @Override   
       
    public void onTextChanged(CharSequence s, int start, int before, int count) {   
       
    SwitcherActivity.this.myTextSwitcher.setText(SwitcherActivity.this.myDigitalClock.getText());   
       
    }   
       
       
    @Override   
       
    public void beforeTextChanged(CharSequence s, int start, int count, int after) {   
       
    }   
       
       
    @Override   
       
    public void afterTextChanged(Editable s) {   
       
    }   
       
    };   
       
    }
復制代碼
我們在來看看xml里的代碼吧   
   
   
  1. <?xml version="1.0" encoding="utf-8"?>   
       
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"   
       
    android:layout_width="fill_parent"   
       
    android:layout_height="fill_parent"   
       
    android:orientation="vertical"   
       
    android:gravity="center_horizontal">   
       
       
    <Button android:id="@+id/buttonChangeText"   
       
    android:layout_width="wrap_content"   
       
    android:layout_height="wrap_content"   
    android:text="開始" />   
       
       
    <DigitalClock android:id="@+id/myDigitalClock"   
       
    android:layout_width="fill_parent"   
       
    android:layout_height="wrap_content"   
       
    android:textSize="36dip"/>   
       
       
    <TextSwitcher android:id="@+id/myTextSwitcher"   
       
    android:layout_width="fill_parent"   
       
    android:layout_height="wrap_content" />   
       
       
    </LinearLayout>
復制代碼
這個就是我們常說的android控件,新手們要好好的看哦,每一個成功的實例都是我們一點一點積累起來的。大家要是對這篇文章有什么問題,我們可以回帖交流。希望高手帶帶我,少讓我走的彎路

上一篇:Android中EditText - 可編輯文本控件
下一篇:Android 如何使用Alarm
您需要登錄后才可以回帖 登錄 | 立即注冊

本版積分規(guī)則

Archiver|新帖|標簽|軟件|Sitemap|ZNDS智能電視網(wǎng) ( 蘇ICP備2023012627號 )

網(wǎng)絡信息服務信用承諾書 | 增值電信業(yè)務經(jīng)營許可證:蘇B2-20221768 丨 蘇公網(wǎng)安備 32011402011373號

GMT+8, 2025-1-4 01:18 , Processed in 0.066542 second(s), 16 queries , Redis On.

Powered by Discuz!

監(jiān)督舉報:report#znds.com (請將#替換為@)

© 2007-2024 ZNDS.Com

快速回復 返回頂部 返回列表