这是我的想法的概念。我有我的活动:
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;
}
}
和tabView:
<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布局和按钮“下一步”。单击按钮,您会看到第二个活动,并且您看到蓝色布局和按钮的相同布局,但在蓝色布局中是左侧的一个按钮。当您再次单击“下一步”按钮时,您将看到具有相同布局的第三个活动,但是在蓝色布局中是两个按钮,一个旁边一个,等等。我怎么能这样做我在每个活动中都有相同的布局,但是第二个活动应该知道第一个活动中添加了按钮,第三个活动应该知道并显示两个按钮等?
答案 0 :(得分:0)
将所有按钮放到您的布局中,但设置其可见性消失, 然后
活动1:将button1可见性设置为可见
活动2:将button2可见性设置为可见
活动2:将button2和按钮1的可见性设置为可见
[EDIT1]
Display display = getWindowManager().getDefaultDisplay();
Point size = new Point();
display.getSize(size);
int width = size.x;
int height = size.y;
通过捕捉大小,您可以使用if condition来决定显示哪个按钮