在我的 android 应用程序中,我在我的 xml 布局中定义了一个片段。代码如下:
<fragment
android:id="@+id/list_fragment"
android:layout_width="220dp"
android:layout_height="fill_parent"
android:layout_marginLeft="62dp"
android:layout_marginTop="20dp"
class="com.example.shantaportfolio.ListFragment" />
但我需要class
从我的 java 代码中更改片段的属性。我该怎么做?使用哪种方法?