android listview在动画后改变高度

问题描述 投票:1回答:3

我的LinearLayout中有一个Button,一个View和一个ListView。在按钮单击事件上,我希望视图消失,列表视图取代它。我试图在动画之后将LayoutParams设置为match_parent dinamically,但它不起作用。有任何想法吗?

这是我的activity_main.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:id="@+id/container"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical"
 tools:context="com.example.linearlayouttry.MainActivity" >

 <Button android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Start"/>

 <View android:id="@+id/view"
    android:layout_width="fill_parent"
    android:background="@android:color/black"
    android:layout_height="300dp"/>

 <ListView android:id="@+id/listv"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

 </ListView>

</LinearLayout>

这是我的MainActivity.java:

public class MainActivity extends Activity implements OnClickListener {

protected View v;
protected ListView lv;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    ArrayList<String> list = new ArrayList<String>(Arrays.asList("1","2","3","4","5","6","7","8","9","10"));
    lv = (ListView) findViewById(R.id.listv);
    lv.setAdapter(new ArrayAdapter<>(getApplicationContext(), android.R.layout.simple_list_item_1, list));

    Button mButton = (Button) findViewById(R.id.button);
    mButton.setOnClickListener(this);

    v = findViewById(R.id.view);
}

@Override
public void onClick(View v) {
    this.v.setAlpha(0);
    int height = this.v.getLayoutParams().height;
    lv.animate().translationY(-height).setListener(new AnimatorListener() {
        public void onAnimationStart(Animator animation) {}
        public void onAnimationRepeat(Animator animation) {}

        @Override
        public void onAnimationEnd(Animator animation) {
            lv.getLayoutParams().height=LayoutParams.MATCH_PARENT;
            lv.requestLayout();
        }

        public void onAnimationCancel(Animator animation) {}
    });
}
}

当我将特定的整数设置为高度时,它正在工作,但我怎样才能使用match_parent?

解决了:

我只需要从linearlayout中删除视图,如下所示:

public void onAnimationEnd(Animator animation) {
            parent.removeView(this.v);
            lv.setTranslationY(0);
}
android android-layout listview layoutparams
3个回答
1
投票

尝试

lv.setLayoutParams(new LayoutParams(widthValue, LayoutParams.MATCH_PARENT));

代替

lv.getLayoutParams().height=LayoutParams.MATCH_PARENT;
lv.requestLayout();

有关LayoutParams类的更多信息,请访问here


1
投票

谢谢你的回答,我解决了问题,从linearlayout删除视图,如下所示:

public void onAnimationEnd(Animator animation) {
            parent.removeView(this.v);
            lv.setTranslationY(0);
}

0
投票

或者,

public void onAnimationEnd(Animator animation) {
     this.v.setVisibility(View.GONE);
     lv.setTranslationY(0);
}
© www.soinside.com 2019 - 2024. All rights reserved.