0

嗨,我创建了一个滑动抽屉,并创建了一个可滚动的 xml 文件,当用户点击滑动抽屉中的按钮时,我想将其膨胀。但是,当点击按钮时,除了空白屏幕之外什么都没有显示。谁能告诉我我做错了什么?这是我的代码:xml:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF" >

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

    <TextView
        android:id="@+id/text2"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:gravity="center"
        android:text="@string/text2" />

    <ImageView 
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_marginTop="10sp"
        android:adjustViewBounds="true"
        android:src="@drawable/image"/>

    <TextView
        android:id="@+id/text1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_marginLeft="5sp"
        android:layout_marginTop="10sp"
        android:text="@string/text1" />

    <ImageView 
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_marginTop="10sp"
        android:adjustViewBounds="true"
        android:src="@drawable/image1"/>

</LinearLayout>

和java:

next3.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View view) {
        getLayoutInflater().inflate(R.layout.activity, null);
        slider.animateClose();


    }
});

请帮忙!

4

1 回答 1

0

线

getLayoutInflater().inflate(R.layout.activity, null);

创建(膨胀)布局文件的内容,但您没有将返回的 View 放在任何地方。

你想把 ScrollView 放在滑动抽屉里吗?如果是这样,请更改为:

getLayoutInflater().inflate(R.layout.activity, slider);
于 2013-01-06T07:51:02.180 回答