我正在尝试在另一个布局中扩充布局,但它不起作用...... 在我的活动中,我展示了activity_serie.xml,它是黑色的,然后我尝试在image_item.xml上充气,这是白色的。但我从未见过image_item.xml。
public class Serie extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_serie);
ViewPager mainLayout = (ViewPager) findViewById(R.id.serie_pager);
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View menuLayout = inflater.inflate(R.layout.image_item, mainLayout, true);
}
@Override
protected void onResume() {
super.onResume();
}}
activity_serie.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000
android:orientation="vertical" >
<android.support.v4.view.ViewPager
android:id="@+id/serie_pager"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</RelativeLayout>
image_item.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:background="#FFFFFF"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</RelativeLayout>
有人可以告诉我为什么吗? 感谢。
答案 0 :(得分:0)
findViewById(R.layout.activity_serie)
您应在此处指定视图ID,而不是布局名称。
答案 1 :(得分:0)
你为什么要这样做?只需将两个视图放入一个xml中,然后为一个元素设置android:visibility="gone"
即可。您可以通过ID解决布局问题,并根据需要更改可见性。