2014-05-03 106 views
0

當我嘗試運行我的程序時,我的應用程序崩潰。這是我正在使用的代碼。FragmentTest應用程序不工作,我的應用程序不斷崩潰

MainActivity.java

import android.os.Bundle; 
import android.view.View; 
import android.app.Activity; 
import android.app.Fragment; 
import android.app.FragmentManager; 
import android.app.FragmentTransaction; 


public class MainActivity extends Activity { 

@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 

    setContentView(R.layout.activity_main); 
} 

public void selectFrag(View view) { 
    Fragment fr; 

    if(view == findViewById(R.id.button2)) { 
     fr = new FragmentTwo(); 

    }else { 
     fr = new FragmentOne(); 
    } 

    FragmentManager fm = getFragmentManager(); 
    FragmentTransaction fragmentTransaction = fm.beginTransaction(); 
    fragmentTransaction.replace(R.id.fragment_place, fr); 
    fragmentTransaction.commit(); 

} 

} 

FragmentOne.java

import android.app.Fragment; 
import android.os.Build; 
import android.os.Bundle; 
import android.view.LayoutInflater; 
import android.view.View; 
import android.view.ViewGroup; 

public class FragmentOne extends Fragment { 
@Override 
public View onCreateView(LayoutInflater inflater, 
    ViewGroup container, Bundle savedInstanceState) { 

    //Inflate the layout for this fragment 

    return inflater.inflate(
      R.layout.fragment_one, container, false); 
} 
} 

FragmentTwo.java

import android.app.Fragment; 
import android.os.Build; 
import android.os.Bundle; 
import android.view.LayoutInflater; 
import android.view.View; 
import android.view.ViewGroup; 

public class FragmentOne extends Fragment { 
@Override 
public View onCreateView(LayoutInflater inflater, 
    ViewGroup container, Bundle savedInstanceState) { 

    //Inflate the layout for this fragment 

    return inflater.inflate(
      R.layout.fragment_one, container, false); 
} 
} 

main_activity.xml

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:orientation="vertical" > 
<Button 
    android:id="@+id/button1" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="Fragment No.1" 
    android:onClick="selectFrag" /> 

<Button 
    android:id="@+id/button2" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:onClick="selectFrag" 
    android:text="Fragment No.2" /> 

<fragment 
    android:name="com.javacodegeeks.android.fragmentstest.FragmentOne" 
    android:id="@+id/fragment_place" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" /> 

</LinearLayout> 

fragment_one.xml

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" 
    android:background="#00ffff"> 

    <TextView 
     android:id="@+id/textView1" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_weight="1" 
     android:text="This is fragment No.1" 
     android:textStyle="bold" /> 

</LinearLayout> 

的fragment_two.xml也是一樣fragment_one.xml但在TextView的,我打印的片段,而不是2號片段一號。

而在我的AndroidManifest.xml文件中,我正在使用的min sdk版本是11.請大家指教我,我錯了,糾正了我。

我複製的代碼this link

+2

什麼是錯誤的logcat的? –

+1

'android:name =「com.javacodegeeks.android.fragmentstest.FragmentOne」' - 這是你的包的名字嗎? ** ** com.javacodegeeks.android.fragmentstest?如果沒有,請在該行中替換您的軟件包名稱。 –

+0

感謝@Bob Malooga幫助我。我的軟件包名稱是com.example.fragmentstest – TULSIRAJ

回答

0

由於您的包名是package name is com.example.fragmentstest,改變這一行:

android:name="com.javacodegeeks.android.fragmentstest.FragmentOne" 

android:name="com.example.fragmentstest.FragmentOne" 

main_activity.xml

+0

是的,我已經做到了,它工作正常。謝謝老兄.. :) – TULSIRAJ

+0

不客氣,男士。 ;) –

相關問題