单个活动上的多个TextSwitcher

时间:2015-10-09 18:53:10

标签: android android-animation

我想将3个TextSwitcher一个接一个地放在单个Activity中。 问题是只有第一个文本交换机工作正常。其余的都没有表现出来。也没有抛出异常。当我删除第一个时,第二个开始工作正常。我假设在单个活动中只能存在一个TextSwitcher但我找不到关于此的确认。或者我可能做错了,因为我是Android世界的新手 这是我观点的一部分:

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_gravity="bottom|center_horizontal">
        <TextSwitcher
            android:id="@+id/textSwitcher1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
        </TextSwitcher>
        <TextSwitcher
            android:id="@+id/textSwitcher2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
        </TextSwitcher>
        <TextSwitcher
            android:id="@+id/textSwitcher3"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
        </TextSwitcher>
    </LinearLayout>
</FrameLayout>

要设置我按以下方法创建的TextSwitcher:

private TextSwitcher InitializeTextSwitcher(int textSwitcherId) {
    TextSwitcher ts = (TextSwitcher)findViewById(textSwitcherId);

    ts.setFactory(new ViewSwitcher.ViewFactory() {
        @Override
        public View makeView() {
            TextView myText = new TextView(MainActivity.this);
            myText.setGravity(Gravity.CENTER_HORIZONTAL);
            myText.setTextSize(48);
            myText.setTextColor(Color.WHITE);
            return myText;
        }
    });

    Animation in = AnimationUtils.loadAnimation(this, android.R.anim.slide_in_left);
    Animation out = AnimationUtils.loadAnimation(this,android.R.anim.slide_out_right);

    ts.setInAnimation(in);
    ts.setOutAnimation(out);

    return ts;
}

最后,我使用Runnable对象+处理程序来安排文本更改:

    Runnable r=new Runnable() {
    // Override the run Method
    public void run() {
        // TODO Auto-generated method stub
        try
        {
            if(timeElapsed == timeStep) {
                textSwitcher1.setText(textToShow[0]);
            }else if (timeElapsed == 2*timeStep){
                textSwitcher2.setText(textToShow[1]);
            }else if(timeElapsed == 3*timeStep){
                textSwitcher3.setText(textToShow[2]);
            }else if (timeElapsed == 4*timeStep){
                 //Do something else
            }
        }
        finally
        {
            timeElapsed += timeStep;
            mHandler.postDelayed(this, timeStep);
        }
    }
};

1 个答案:

答案 0 :(得分:0)

我相信您的问题是,由于您的布局设置方式,您实际上一次只能看到一个TextSwitcher,这就解释了为什么第二个在您删除第一个时开始工作的原因

假设您希望TextSwitcher全部放在一条水平线上,一种可能的布局如下:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:layout_gravity="bottom|center_horizontal">
    <TextSwitcher
        android:id="@+id/textSwitcher1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1">
    </TextSwitcher>
    <TextSwitcher
        android:id="@+id/textSwitcher2"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1">
    </TextSwitcher>
    <TextSwitcher
        android:id="@+id/textSwitcher3"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1">
    </TextSwitcher>
</LinearLayout>