如何在扩展Fragment的类中创建LinearLayout?

时间:2014-08-24 23:24:06

标签: android fragment android-linearlayout

有人知道如何在Fragment中创建LinearLayout吗? 我想在布局中显示TextView,ListView,所以我想在LinearLayout中创建它。 但是,我无法在类中创建LinearLayout,如:LinearLayout ll = new LinearLayout(this);

public class GamesFragment extends Fragment {

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {

    View rootView = inflater.inflate(R.layout.fragment_games, container, false);

    return rootView;


}}

这是我的XML

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#ff8400" >

<TextView android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:text="Design Games Screen"
    android:textSize="20dp"
    android:layout_centerInParent="true"/>

1 个答案:

答案 0 :(得分:1)

如果我理解你的问题,你想在片段的布局文件中创建一个LinearLayout。如果没有理由以编程方式创建它,那么使用xml文件,如下所示:

 <LinearLayout 
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="vertical"
   android:background="#ff8400" >

     <TextView android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="Design Games Screen"
        android:textSize="20dp"
        android:layout_centerInParent="true"/>
     <ListView
        android:layout_width="match_parent"
        android:layout_height="20dp" />

 </LinearLayout>

这样,当您在片段中扩展布局时,您将在其中定义线性布局。我希望这会有所帮助。