程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-點擊按鈕改變一個 fragment 視圖

android-點擊按鈕改變一個 fragment 視圖

編輯:編程綜合問答
點擊按鈕改變一個 fragment 視圖

我想通過點擊按鈕來改變一個fragment視圖

public View onCreateView(final LayoutInflater inflater, final ViewGroup container,
        Bundle savedInstanceState) {
    // TODO Auto-generated method stub

    if (container == null) {
        return null;
    }
LinearLayout theLayout = (LinearLayout)inflater.inflate(R.layout.settings, container, false);
Button edit = (Button) theLayout.findViewById(R.id.btn_edit);
edit.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
// Here I want to change the view.[xml file]
}
        });
return theLayout;

}

在 activity 中可以使用setContentView() 改變視圖
如何在 fragment 中實現呢?

最佳回答:


很簡單的解決方案:

  edit.setOnClickListener(new View.OnClickListener() {
                public void onClick(View v) {
                    /**
                     * Edit button click will replace Settings screen to
                     * edit screen
                     **/

                    theLayout = (LinearLayout)inflater.inflate(R.layout.edit_settings, container, false);

                }
            });
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved