編輯:關於Android編程
(1)Fragment的第一種使用方法是使用fragment加載單獨的布局文件:(也就是xml的方式實現)
結構如下:
activity_main.xml主要是在一個線性布局中添加兩個線性布局
<喎?/kf/ware/vc/" target="_blank" class="keylink">vcD4KPHA+PHByZSBjbGFzcz0="brush:java;">
right.xml是等會使用fragment的時候,加載的一個布局文件:(由於主要是在界面中加載、所以不作特殊要求)
package com.lc.tablet_fragment_addview; import android.app.Fragment; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.View.OnClickListener; import android.view.ViewGroup; import android.widget.Button; import android.widget.Toast; public class MyFragment extends Fragment { public MyFragment() { // TODO Auto-generated constructor stub } @Override public void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // 這裡的R.layout.right是界面的id View view = inflater.inflate(R.layout.right, null); Button button = (Button) view.findViewById(R.id.button11); button.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { Toast.makeText(getActivity(), "hello world!", Toast.LENGTH_LONG) .show(); } }); return view; } @Override public void onPause() { // TODO Auto-generated method stub super.onPause(); } }
package com.lc.tablet_fragment_addview; import android.app.Activity; import android.app.FragmentManager; import android.app.FragmentTransaction; import android.os.Bundle; import android.view.Menu; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; public class MainActivity extends Activity { private Button button; private FragmentManager fragmentManager; // 管理 private FragmentTransaction fragmentTransaction; // 事務 @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); button = (Button) this.findViewById(R.id.button1); fragmentManager = getFragmentManager(); button.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { fragmentTransaction = fragmentManager.beginTransaction(); MyFragment myFragment = new MyFragment(); // 第一個參數是要放到哪個地方的id,第二個為要放入的fragment fragmentTransaction.add(R.id.linerlayout2, myFragment); fragmentTransaction.commit(); } }); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu); return true; } }演示效果:當點擊灰色界面的按鈕時顯示右側的布局:
package com.example.tablet_fragment_fragementmanager; import android.app.Fragment; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; public class MyFragment extends Fragment { public MyFragment() { } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { /* * 這裡只需找到布局文件即可 */ View view = inflater.inflate(R.layout.text, null); return view; } @Override public void onResume() { super.onResume(); } }
package com.example.tablet_fragment_fragementmanager; import android.app.Activity; import android.app.FragmentManager; import android.os.Bundle; import android.view.Menu; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.Toast; /* * 再布局文件中拖入一個fragment、則使用下邊的方法來找到特定的fragment * 不需要使用beginTransaction方法 */ public class MainActivity extends Activity { private MyFragment fragment; private FragmentManager fragmentManager; private Button button; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); fragmentManager = getFragmentManager(); // 使用fragmentManager找到fragment、使用ID作為唯一的標識符 fragment = (MyFragment) fragmentManager .findFragmentById(R.id.fragment1); // 或者使用下邊的方法找到fragment // fragment =(MyFragment)fragmentManager.findFragmentByTag("fragment1"); // 找到fragment布局中的按鈕button1 button = (Button) fragment.getView().findViewById(R.id.button1); button.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { Toast.makeText(MainActivity.this, "hello world!", Toast.LENGTH_SHORT).show(); } }); } @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.main, menu); return true; } }
在安卓手機上,不少用戶都會遇過com.android.phone已停止的彈窗,尤其經常刷機的最明顯。導致的原因實在太多,有刷機步驟不對的,亂改系統文件的,這
本文實例講述了Android Service中使用Toast無法正常顯示問題的解決方法。分享給大家供大家參考,具體如下:在做Service簡單練習時,在Service中的
首先承認:這篇文章翻譯的有點不准確,因為這個action,我拿不准怎麼翻譯,不知道是翻譯成動詞還是名詞。所以我把有道詞典上的翻譯結果列在下面。action n. 行動;活
普通按鈕也就那麼幾種樣式,看著都審美疲勞,先放效果圖: 你會不會以為這個按鈕是集結了很多動畫的產物,我告訴你,並沒有。所有的實現都是基於自定義View,采用最底