0

这是我的想法的概念。我有我的活动:

public class FirstActivity extends Activity{

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.first_activity);

        Button next = (Button) findViewById(R.id.nextActivity);
        next.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                Intent intent = new Intent(FirstActivity.this, SecondActivity.class);
                startActivity(intent);
            }
        });
    }
}

这是xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <com.example.actionbartest.ClassTabs
        android:id="@+id/tab"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        />

</LinearLayout>

这是 ClassTabs 类:

public class ClassTabs extends LinearLayout{

    Button nextButton;
    LinearLayout tabs;
    private int count = 0;

    public ClassTabs(Context context, AttributeSet attrs) {
        super(context, attrs);
    }
    public ClassTabs(Context context) {
        super(context);
    }
    @Override
    protected void onFinishInflate() {
        super.onFinishInflate();
        ((Activity)getContext()).getLayoutInflater().inflate(R.layout.tabview, this);
        setupViewItems();
    }

    private void setupViewItems() {
        nextButton = (Button) findViewById(R.id.nextActivity);
        tabs = (LinearLayout) findViewById(R.id.toptab);

    }
    public void addTab(Button child){
        if(child!=null){
            tabs.addView(child);
            count++;
        }
    }
    public int getCount() {
        return count;
    }
    public void setCount(int count) {
        this.count = count;
    }
}

和标签视图:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
   >

    <LinearLayout
        android:id="@+id/toptab"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:orientation="horizontal" 
        android:background="@color/blue">
    </LinearLayout>

    <Button
        android:id="@+id/nextActivity"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Next" />

</LinearLayout>

我想做这样的事情:你在第一个活动中。只有您看到的是蓝色 40dp 布局和“下一步”按钮。单击按钮,您会看到第二个活动,并且您会看到与蓝色布局和按钮相同的布局,但在蓝色布局中,左侧是一个按钮。当您再次单击“下一步”按钮时,您将看到第三个具有相同布局的活动,但在蓝色布局中是两个按钮,一个紧挨一个,等等。我该怎么做?我在每个活动中都有相同的布局,但第二个活动应该知道在第一个活动中添加了按钮,第三个活动应该知道并显示两个按钮等?

4

1 回答 1

0

将所有按钮放到您的布局中,但将它们的可见性设置为消失,然后

活动 1:将 button1 可见性设置为可见

活动 2:将 button2 可见性设置为可见

活动 2:将按钮 2 和按钮 1 的可见性设置为可见

[编辑1]

Display display = getWindowManager().getDefaultDisplay();
Point size = new Point();
display.getSize(size);
int width = size.x;
int height = size.y;

通过捕获大小,您可以使用 if 条件来决定将显示哪个按钮

于 2013-01-31T13:02:51.523 回答