0

我是 Fragments 的新手,我正在努力解决这个问题。下面是我的代码。为了它。当我运行我的应用程序时,我没有任何错误消息,但我没有得到输出

MainActivity.java

public class MainActivity extends FragmentActivity{

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

}

}

MyFragments.java

public class MyFragments extends Fragment {

public MyFragments() {
    // TODO Auto-generated constructor stub
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.fragment_one, container, false);
    return view;
}
}

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" >

    <TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="TextView" />

</LinearLayout>

activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >

<fragment
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/fragment_One"
    android:name="com.benchmark.fragmentsdemo.MyFragments"
    android:layout_width="0dp"
    android:layout_height="fill_parent"
    android:layout_weight="1" />

<fragment
    android:id="@+id/fragment_two"
    android:name="com.benchmark.fragmentsdemo.MyFragments"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="2" />

</LinearLayout>

请任何人帮助我

4

3 回答 3

0

试试这个:

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:tools="http://schemas.android.com/tools"
      android:id="@+id/LinearLayout1"
       android:layout_width="fill_parent"
       android:layout_height="match_parent"
       android:orientation="vertical"
        tools:context=".MainActivity" >
于 2013-02-28T09:05:43.263 回答
0

您的布局未正确实现。

试试下面的布局。

activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:weightSum="1"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >

<fragment
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/fragment_One"
    android:name="com.benchmark.fragmentsdemo.MyFragments"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="0.5" />

<fragment
    android:id="@+id/fragment_two"
    android:name="com.benchmark.fragmentsdemo.MyFragments"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="0.5" />

</LinearLayout>

父 LinearLayout 的方向是垂直的,您正在制作片段 0dp 的宽度,而不是高度

于 2013-02-28T09:08:47.757 回答
0

嘿,看看这个关于 Fragments 的教程,有一个逐步创建它的过程,所以它可能对你有用点击这里并查看developer.android 提供的文档。

于 2013-02-28T09:15:01.833 回答