РЕДАКТИРОВАТЬ: я изменил свой ответ. В общем, я думаю, что было бы хорошо добавить больше структуры к классу вместо того, чтобы делать все в одном месте. Один из таких примеров может выглядеть следующим образом:
public class StackoverflowActivity extends Activity {
private Button mBtn;
private LinearLayout mContainer;
private final Handler mHandler = new Handler()
{
public void handleMessage(Message msg)
{
int index = msg.what;
addTextViewAnimated(index);
}
};
// Called when the add-button is clicked
private OnClickListener myClickListener = new OnClickListener()
{
@Override
public void onClick(View v) {
// Create 5 textViews
for(int k=0; k < 5; k++)
{
mHandler.sendEmptyMessageDelayed(k, 500 + 500 * k);
}
}
};
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// Container view -> the linearlayout inside a scrollview
mContainer = (LinearLayout)findViewById(R.id.container);
// The button to click
mBtn = (Button)findViewById(R.id.btn);
// Add the clicklistener
mBtn.setOnClickListener(myClickListener);
}
// This function creates the TextView
// And adds it to the container Animated
public void addTextViewAnimated(int index)
{
Animation a1 = new AlphaAnimation(0.00f, 1.00f);
a1.setDuration(350);
a1.setFillAfter(true);
TextView tv = new TextView(this);
tv.setVisibility(View.VISIBLE);
tv.setTextSize(32);
tv.setPadding(10, 0, 10, 0);
tv.clearAnimation();
tv.startAnimation(a1);
tv.setText("Textview " + index);
mContainer.addView(tv);
}
}
Для простоты использования, вот мой main.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Button
android:id="@+id/btn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentBottom="true"
android:layout_centerVertical="true"
android:text="Button" />
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:fillViewport="true"
android:layout_above="@id/btn" >
<LinearLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
</LinearLayout>
</ScrollView>
</RelativeLayout>
Может быть, это поможет вам начать. Я не совсем уверен, чего ты хочешь достичь.