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

溫馨提示×

溫馨提示×

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

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

Android - ToDoList(fragment) 詳解

發布時間:2020-06-06 06:30:34 來源:網絡 閱讀:837 作者:morndragon 欄目:移動開發

ToDoList(fragment) 詳解


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


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


ToDoList做為Android的經典練習, 參考: http://blog.csdn.net/caroline_wendy/article/details/21223995


Fragment(碎片) 可以靈活地從一個活動的Activity上添加或刪除Fragment, 有良好的用戶體驗;

下面是Fragment的具體設計:


1. 創建new_item_fragment的資源文件:

位置: res->new_item_fragment.xml

<?xml version="1.0" encoding="utf-8"?>  <EditText xmlns:android="http://schemas.android.com/apk/res/android"     android:id="@+id/myEditText"     android:layout_width="match_parent"     android:layout_height="wrap_content"     android:hint="@string/addItemHint"     android:contentDescription="@string/addItemContentDescription" />

包含一個EditText控件;


2. 創建NewItemFragment的邏輯實現:

位置: java->package->NewItemFragment.java

package mzx.spike.todolist.app;  import android.app.Activity; import android.app.Fragment; import android.os.Bundle; import android.view.KeyEvent; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.EditText;  /**  * Created by C.L.Wang on 14-3-14.  */ public class NewItemFragment extends Fragment{      private  OnNewItemAddedListener onNewItemAddedListener;      //監聽事件     public interface OnNewItemAddedListener {         public void onNewItemAdded(String newItem);     }      @Override     public View onCreateView(LayoutInflater inflater, ViewGroup container,                              Bundle savedInstanceState) {          View view = inflater.inflate(R.layout.new_item_fragment, container, false);          final EditText myEditText = (EditText)view.findViewById(R.id.myEditText);          //監聽事件         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)) {                         String newItem = myEditText.getText().toString();                         onNewItemAddedListener.onNewItemAdded(newItem);                         myEditText.setText("");                         return true;                     }                 return false;             }         });          return view;     }      //綁定到Activity     public void onAttach(Activity activity) {          super.onAttach(activity);          try {             onNewItemAddedListener = (OnNewItemAddedListener)activity;         } catch (ClassCastException e) {             throw new ClassCastException(activity.toString() + " must implement OnNewItemAddedListener");         }     }  } 

詳解:

1. 繼承Fragment類;

2. 監聽接口(interface OnNewItemListener), 包含一個監聽方法(onNewItemAdded), 然后實現一個實例;

3. 創建視圖(onCreateView), 需要返回一個視圖(View);

4. 填充一個視圖, 調用inflater.inflate()函數, 綁定fragment的資源文件;

5. 獲得控件的引用, view.findViewById(), 得到myEditText的引用;

6. 監聽事件, 監聽myEditText的輸入內容, 傳遞給接口的內容(new Item);

7. 使用onAttach()函數, 綁定Acitivity之后, 獲得activity的引用;


3. 創建ToDoListFragment的邏輯實現:

位置: java->package->ToDoListFragment.java


package mzx.spike.todolist.app;  import android.app.ListFragment;  /**  * Created by C.L.Wang on 14-3-14.  */ public class ToDoListFragment extends ListFragment{ }

繼承ListFragment;


4. 創建activity_to_do_list資源文件, 即Activity資源文件:

位置: res->layout->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">      <fragment android:name="mzx.spike.todolist.app.NewItemFragment"         android:id="@+id/NewItemFragment"         android:layout_width="match_parent"         android:layout_height="wrap_content"         android:hint="@string/addItemHint"         android:contentDescription="@string/addItemContentDescription"     />      <fragment android:name="mzx.spike.todolist.app.ToDoListFragment"         android:id="@+id/ToDoListFragment"         android:layout_width="match_parent"         android:layout_height="wrap_content"     />  </LinearLayout>

LinearLayout包含兩個fragment結點, 需要提供android:name的參數, 實現;


5. 創建ToDoListActivityt的邏輯實現, 即Activity的邏輯實現:

位置: java->package->ToDoListActivityt.java


package mzx.spike.todolist.app;  import android.app.FragmentManager; import android.os.Bundle; import android.support.v7.app.ActionBarActivity; import android.view.Menu; import android.view.MenuItem; import android.widget.ArrayAdapter;  import java.util.ArrayList;   public class ToDoListActivity extends ActionBarActivity implements NewItemFragment.OnNewItemAddedListener {      private ArrayAdapter<String> aa;     private ArrayList<String> toDoItems;      @Override     protected void onCreate(Bundle savedInstanceState) {         super.onCreate(savedInstanceState);         setContentView(R.layout.activity_to_do_list);          //獲得fragment的引用         FragmentManager fm = getFragmentManager();         ToDoListFragment toDoListFragment = (ToDoListFragment)fm.findFragmentById(R.id.ToDoListFragment);          toDoItems = new ArrayList<String>();          //三個參數         aa = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, toDoItems);          toDoListFragment.setListAdapter(aa);     }      //重寫了接口的方法     public void onNewItemAdded(String newItem) {         toDoItems.add(newItem);         aa.notifyDataSetChanged();     }      @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. 繼承監聽接口(OnNewItemAddedListener);

2. ArrayList類型數據, 和適配器(ArrayAdapter);

3. 通過findFragmentById(), 獲得ToDoListFragment的引用;

4. 把toDoItem綁定適配器, ToDoListFragment設置適配器(setListAdapter);

5. 實現接口的方法, 傳遞至toDoItems, 通知適配器更改(notifyDataSetChanged);


6. 執行程序:

其他文件參考: http://blog.csdn.net/caroline_wendy/article/details/21223995


下載地址: http://download.csdn.net/detail/u012515223/7042137


Android - ToDoList(fragment) 詳解

向AI問一下細節

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

AI

惠来县| 延吉市| 洛阳市| 潞西市| 杭锦旗| 合水县| 喀什市| 长白| 新民市| 县级市| 安福县| 澄江县| 通州市| 东明县| 杭锦后旗| 广元市| 达尔| 定兴县| 兰西县| 祁东县| 眉山市| 普安县| 蒲江县| 北海市| 平顶山市| 邓州市| 连江县| 高青县| 蚌埠市| 衡水市| 兰州市| 阳东县| 新巴尔虎左旗| 无极县| 西充县| 溧阳市| 丰顺县| 峨边| 平顺县| 达孜县| 弋阳县|