2012-02-21 71 views
0

我正在創建一個標籤視圖,當點擊一個按鈕時,它必須移動到另一個屏幕,當我嘗試使用上面的代碼實現它時,它將更改爲另一個屏幕,但按鈕仍然可見,並顯示下一個屏幕我想下一個屏幕應該覆蓋整個屏幕在tabview中的片段

public class Tab1Fragment extends Fragment { 
LinearLayout mLayout; 
/** (non-Javadoc) 
* @see android.support.v4.app.Fragment#onCreateView(android.view.LayoutInflater,  android.view.ViewGroup, android.os.Bundle) 
*/ 
public View onCreateView(LayoutInflater inflater, ViewGroup container, 
    Bundle savedInstanceState) { 

if (container == null) { 


    return null; 
} 

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

     // Register for the Button.OnClick event 

     Button b = (Button)theLayout.findViewById(R.id.button1); 

     b.setOnClickListener(new View.OnClickListener() { 



      @Override 

      public void onClick(View v) { 

       Fragment mFragment = new third_fragment_view(); 
       android.support.v4.app.FragmentTransaction ft = getFragmentManager().beginTransaction(); 

       ft.replace(R.id.container, mFragment); 
       ft.addToBackStack(null); 
       ft.commit(); 


      } 

     }); 

return theLayout; 

} 
} 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:orientation="vertical" 
android:background="#00bfff" 
android:id="@+id/container1" > 

<Button 
    android:id="@+id/button1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="Button" /> 

</LinearLayout> 

enter image description here

回答

0

用戶界面,以覆蓋整個屏幕dn't使用Fragments.Use意圖

b.setOnClickListener(new View.OnClickListener() { 
     @Override 
     public void onClick(View v) { 
     Intent intent=new Intent(); 
     intent.setClass(thisactivity.class,targetactivity.class); 
     startActivity(intent); 
     } 
    }); 
+0

但我想打開該行爲ivity在相同的標籤,如果我使用,如你所說那麼它會打開它在一個新的窗口不在我的標籤下 – Ghouse 2012-02-21 11:24:20

+0

Ok.On Cliking the Button應該顯示什麼。根據你的要求 – user1213202 2012-02-21 11:30:02

+0

你需要顯示一個emptyScreen出button.is它correcet?這是你的要求r不? – user1213202 2012-02-21 11:33:47