91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android - ToDoList 詳解

發布時間:2020-08-09 06:18:49 來源:網絡 閱讀:396 作者:morndragon 欄目:移動開發

ToDoList 詳解


版權所有, 禁止轉載, 如有需要, 請站內聯系.

本文地址: http://blog.csdn.net/caroline_wendy/article/details/21223995


ToDoList是一個Android的入門程序, 包含兩個控件, EditText(編輯文本),ListView(列表視圖), 放置在LinearLayout(線性布局);

需要重寫監聽按鍵(setOnKeyListener), 使用適配器(Adapter)進行關聯;


1. 主界面(activity_to_do_list.xml)的代碼:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:tools="http://schemas.android.com/tools"     android:orientation="vertical"     android:layout_width="match_parent"     android:layout_height="match_parent"     android:paddingLeft="@dimen/activity_horizontal_margin"     android:paddingRight="@dimen/activity_horizontal_margin"     android:paddingTop="@dimen/activity_vertical_margin"     android:paddingBottom="@dimen/activity_vertical_margin"     tools:context="mzx.spike.todolist.app.ToDoListActivity">      <EditText         android:id="@+id/myEditText"         android:layout_width="match_parent"         android:layout_height="wrap_content"         android:hint="@string/addItemHint"         android:contentDescription="@string/addItemContentDescription"     />      <ListView         android:id="@+id/myListView"         android:layout_width="match_parent"         android:layout_height="wrap_content"     />  </LinearLayout>


位置: res->layout->activity_to_do_list.xml

注意: 

1. 所有控件, 必須要指定layout_width(控件寬度), layout_height(控件高度), 兩個屬性, Android系統會做出相應的匹配;

2. id屬性, 是為了在R文件中注冊, 在程序邏輯(java文件)中使用, 所以使用"@+id", "+"表示添加的意思;

3. LinearLayout控件(線性), 需要指明orientation(方向), 使其內部控件有序排列;

4. layout的匹配常用的兩種屬性: match_parent(匹配父控件, 填充),wrap_content(包圍內容, 根據內容最小化);


2. 字符串(strings.xml)的代碼: 

<?xml version="1.0" encoding="utf-8"?> <resources>      <string name="app_name">ToDoList</string>     <string name="addItemHint">New To Do Item</string>     <string name="addItemContentDescription">New To Do Item</string>     <string name="action_settings">Settings</string>  </resources> 


位置: res->values->string.xml

注意: 

使用字符串的形式, 可以使表示層和應用邏輯層分離, 可以擴展其他語言;


3. 程序邏輯(ToDoListActivity.java)的代碼:

package mzx.spike.todolist.app;  import android.os.Bundle; import android.support.v7.app.ActionBarActivity; import android.view.KeyEvent; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.widget.ArrayAdapter; import android.widget.EditText; import android.widget.ListView;  import java.util.ArrayList;   public class ToDoListActivity extends ActionBarActivity {      @Override     protected void onCreate(Bundle savedInstanceState) {         super.onCreate(savedInstanceState);         setContentView(R.layout.activity_to_do_list);          //獲取對UI組件的引用         ListView myListView = (ListView)findViewById(R.id.myListView);         final EditText myEditText = (EditText)findViewById(R.id.myEditText); //final 表示常量          //獲取對UI組件的引用         final ArrayList<String> todoItems = new ArrayList<String>();          //創建ArrayAdapter以便講數組綁定到ListView         final ArrayAdapter<String> aa;         aa = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, todoItems);          //將ArrayAdapter綁定到ListView         myListView.setAdapter(aa);          //監聽myEditText的Enter鍵         myEditText.setOnKeyListener(new View.OnKeyListener() {             @Override             public boolean onKey(View view, int i, KeyEvent keyEvent) {                 if (keyEvent.getAction() == KeyEvent.ACTION_DOWN)                     if ((i == KeyEvent.KEYCODE_DPAD_CENTER) || (i == KeyEvent.KEYCODE_ENTER)) {                         todoItems.add(0, myEditText.getText().toString());                         aa.notifyDataSetChanged();                         myEditText.setText("");                         return true;                     }                 return false;             }         });     }       @Override     public boolean onCreateOptionsMenu(Menu menu) {                  // Inflate the menu; this adds items to the action bar if it is present.         getMenuInflater().inflate(R.menu.to_do_list, menu);         return true;     }      @Override     public boolean onOptionsItemSelected(MenuItem item) {         // Handle action bar item clicks here. The action bar will         // automatically handle clicks on the Home/Up button, so long         // as you specify a parent activity in AndroidManifest.xml.         int id = item.getItemId();         if (id == R.id.action_settings) {             return true;         }         return super.onOptionsItemSelected(item);     }  } 


注意:

1. 指定主界面, 使用setContentView()函數;

2. 得到特定UI組件的引用, 使用findViewById()函數, 然后進行類型轉換;

3. 可以new一些存儲函數如ArrayList<String>, 使用相應的適配器(ArrayAdapter), 關聯至UI組件, 如simple_list_item_1表示列表視圖(ListView)的第一項;

4. 組件添加適配器, 使用setAdapter()方法;

5. 組件的監聽方法(setOnKeyListener), 監聽按鍵,重寫(override)onKey()方法, 判斷是否按鍵, 做出相應處理;

6. DPAD, 即d-pad手柄, android包含各種各樣的硬件, 可以自由使用;


4. 生成代碼:

如果R文件未找到, java異常報錯, 則參考: http://blog.csdn.net/caroline_wendy/article/details/21222905


ToDoList代碼下載: http://download.csdn.net/detail/u012515223/7038327

環境如下:

Android - ToDoList 詳解


Android - ToDoList 詳解

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阿拉善盟| 虞城县| 泾川县| 赤水市| 湛江市| 宝应县| 怀安县| 临桂县| 营口市| 墨玉县| 米脂县| 镇平县| 怀集县| 仁寿县| 辽源市| 青州市| 塔河县| 凭祥市| 共和县| 荣成市| 凤翔县| 隆林| 白城市| 年辖:市辖区| 桐城市| 磐安县| 夏津县| 舒城县| 克什克腾旗| 东乌珠穆沁旗| 扬中市| 海林市| 清水河县| 涿州市| 尼勒克县| 改则县| 会理县| 安化县| 如东县| 吴桥县| 都江堰市|