如何以编程方式在表行内添加

如何以编程方式在表行内添加

我可以使用以下xml来实现:

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/startoverviewfragmentLayoutId" >

<TableRow
    android:id="@+id/tableRow1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >

    <fragment
        android:id="@+id/fragment1"
        android:name="com.xxxx.xxx.MyMediaPlayer"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</TableRow>

<TableRow
    android:id="@+id/tableRow2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >
</TableRow>

</TableLayout>


但是我怎么用Java代码呢?我尝试了这个:

    MyMediaPlayer mpv = new MyMediaPlayer(); //Fragment
    TableRow tt = (TableRow)myView.findViewById(R.id.tableRow1);
    tt.addView(mpv);


但是由于片段不是视图,因此无法使用。那我该怎么办?

最佳答案

为了向后兼容,请更换您的

<fragment
    android:id="@+id/fragment1"
    android:name="com.xxxx.xxx.MyMediaPlayer"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />




<FrameLayout
    android:id="@+id/fragment1"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

</FrameLayout>


在您的活动中使用此代码

MyMediaPlayer myf = new MyMediaPlayer();

FragmentTransaction transaction = getFragmentManager().beginTransaction();
transaction.add(R.id.fragment1, myf);
transaction.commit();

关于android - 如何以编程方式在表行内添加 fragment ?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25218764/

10-11 20:10