破碎的画廊动画

时间:2012-11-21 20:27:03

标签: android animation gallery

我在布局中使用了Gallery。当我试图从OnItemSelected函数更改任何视图(而不是Gallery项目)时,它会影响已损坏的Gallery动画(出现混蛋并且它会停止看起来很平滑)。我是指在库中选择另一个视图后出现的标准图库动画。

mGallery.setOnItemSelectedListener(new OnItemSelectedListener() {

    @Override
    public void onItemSelected(AdapterView<?> arg0, View arg1, int pos, long arg3) {
        mTextView1.setText("asda");
    }

    @Override
    public void onNothingSelected(AdapterView<?> arg0) {

    }

});

这是布局:

<RelativeLayout
    android:id="@+id/rl1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" 
    android:background="@drawable/p2_bg_nav">

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:layout_marginRight="10dp"
        android:background="@drawable/p2_btn_nav_xml"
        android:text="Настр."
        android:textColor="#ffffff" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="Мои карты"
        android:textStyle="bold"
        android:textColor="#ffffff"
        android:textAppearance="?android:attr/textAppearanceLarge" />

</RelativeLayout>

<Gallery
    android:id="@+id/gallery"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:spacing="20dp"
    android:padding="20dp"
    android:unselectedAlpha="1.0"
    android:background="#fa0000" />

<ListView
    android:id="@+id/listView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/rl1"
    android:layout_above="@id/gallery"
    android:background="#d8d8d8" >

</ListView>

也许有办法在动画停止事件上设置监听器?

另一件事是我的Gallery项目上有TextView。 TextColor设置为黑色,但仅对库中的选定项目为黑色。如何避免更改未选项的文本颜色?

感谢。

1 个答案:

答案 0 :(得分:0)

看起来原因是所有视图和图库都是以相对布局链接的。更改一个视图后,所有布局都会重绘和图库本身。