編輯:關於Android編程
Android Fragment的回退棧
點開之後按一次回退鍵只返回一次
MainActivity 類
public class MainActivity extends AppCompatActivity { ListView lv; List<Article> mList = new ArrayList<>(); ContentFragment fragment; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); lv = (ListView) findViewById(R.id.lv); //找到xml中靜態創建的fragment // fragment = (ContentFragment) getSupportFragmentManager().findFragmentByTag("fragment"); // //獲取到引用 // fragment.showToask("這是activity中調用fragment中的方法"); initData(); lv.setAdapter(adapter); lv.setOnItemClickListener(new AdapterView.OnItemClickListener() { @Override public void onItemClick(AdapterView<?> parent, View view, int position, long id) { Article a = mList.get(position); ContentFragment fragment = new ContentFragment(); //Activity向新建的fragment傳參 Bundle bundle = new Bundle(); bundle.putSerializable("article",a); fragment.setArguments(bundle); //去顯示 FragmentTransaction ft = getSupportFragmentManager().beginTransaction(); ft.replace(R.id.fl_content,fragment); //添加回退棧 ft.addToBackStack(null); ft.commit(); } }); } public void showToask(String msg){ Toast.makeText(this,msg,Toast.LENGTH_SHORT).show(); } private void initData() { mList.add(new Article("習近平會見菲總統:把分歧管控好 把合作談起來", "習近平指出,中菲是隔海相望的近鄰,兩國人民是血緣相親的兄弟。中菲同為發展中國家,團結、互助、合作、發展是我們的共同目標。雖然我們之間經歷風 雨,但睦鄰友好的情感基礎和合作意願沒有變。中方高度重視中菲關系,願同菲方一道努力,不斷增進政治互信、深化互利合作、妥善處理分歧,做感情上相近相 通、合作中互幫互助、發展中攜手前行的睦鄰友好伙伴。")); mList.add(new Article("外交部官員", "。中菲同為發展中國家,團結、互助、合作、發展是我們的共同目標。雖然我們之間經歷風 雨,但睦鄰友好的情感基礎和合作意願沒有變。中方高度重視中菲關系,願同菲方一道努力,不斷增進政治互信、深化互利合作、妥善處理分歧,做感情上相近相 通、合作中互幫互助、發展中攜手前行的睦鄰友好伙伴。")); mList.add(new Article("洪秀柱邀國民黨4巨頭談黨產議題 馬英九將出席:把分歧管控好 把合作談起來", "鄰,兩國人民是血緣相親的兄弟。中菲同為發展中國家,團結、互助、合作、發展是我們的共同目標。雖然我們之間經歷風 雨,但睦鄰友好的情感基礎和合作意願沒有變。中方高度重視中菲關系,願同菲方一道努力,不斷增進政治互信、深化互利合作、妥善處理分歧,做感情上相近相 通、合作中互幫互助、發展中攜手前行的睦鄰友好伙伴。")); } class Article implements Serializable{ String title; String content; public Article( String title,String content) { this.title = title; this.content = content; } } private BaseAdapter adapter = new BaseAdapter() { @Override public int getCount() { return mList.size(); } @Override public Article getItem(int position) { return mList.get(position); } @Override public long getItemId(int position) { return position; } @Override public View getView(int position, View convertView, ViewGroup parent) { if (convertView == null) convertView = new TextView(MainActivity.this); TextView tv = (TextView) convertView; tv.setText(mList.get(position).title); return convertView; } }; }
ContentFragment 類
public class ContentFragment extends Fragment { @Nullable @Override public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { return View.inflate(getActivity(), android.R.layout.simple_list_item_2, null); } @Override public void onViewCreated(View view, @Nullable Bundle savedInstanceState) { super.onViewCreated(view, savedInstanceState); TextView text1 = (TextView) view.findViewById(android.R.id.text1); TextView text2 = (TextView) view.findViewById(android.R.id.text2); Bundle bundle = getArguments(); if (bundle == null) { text1.setText("測試"); text2.setText("測試內容"); } else { MainActivity.Article article = (MainActivity.Article) bundle.get("article"); text1.setText(article.title); text2.setText(article.content); } //開始調用 MainActivity activity = (MainActivity) getActivity(); activity.showToask("這是fragment中調用activity中的方法"); } public void showToask(String msg){ Toast.makeText(getActivity(),msg,Toast.LENGTH_SHORT).show(); } }
xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_main" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal" tools:context="com.example.backstack10_20.MainActivity"> <!--<fragment--> <!--android:layout_width="wrap_content"--> <!--android:layout_height="match_parent"--> <!--android:layout_weight="1"--> <!--android:tag="fragment"--> <!--android:name="com.example.backstack10_20.ContentFragment"--> <!--/>--> <ListView android:layout_width="0dp" android:layout_weight="1" android:id="@+id/lv" android:layout_height="wrap_content"/> <FrameLayout android:layout_width="0dp" android:layout_weight="2" android:layout_height="wrap_content" android:id="@+id/fl_content"/> </LinearLayout>
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
該功能實現很簡單,就是根據手指坐標位置在畫板上畫 1.效果圖 2.代碼實現 public class ErinieShow extends
我覺得android中的事件分發機制的懵懂期應該是Listview中對於item的點擊和長按事件,那個時候知道item的長按事件是返回boolean值的方法,我們知道要把
JsBridge簡介Android JsBridge 就是用來在 Android app的原生 java 代碼與 javascript 代碼中架設通信(調用)橋梁的輔助工
01-11 19:47:57.153: A/libc(27675): Fatal signal 11 (SIGSEGV) at 0xdeadbaad (code=1),