以编程方式修复页面底部的相对布局
问题描述:
我创建了一个包含我所有活动布局的scrollView。在scrollview中,我创建了一个垂直方向的线性布局,并在其内部使用for-loop创建了一些包含图像和textview的相对布局。我需要滚动视图,因为在某些时候,我可以在布局中有许多图像,并且屏幕需要滚动。 这是好的,所有工作都正常。我的问题在之后。正如你可以在代码的底部看到的,我创建了包含一个简单按钮的最后一个相对布局。我的问题是,这种布局不会停留在页面的底部,而是会在与屏幕的关系上上下移动。因此,例如,如果只有一个图像,则最后一个相对布局位于页面顶部,并附加到图像上。如果有许多图像,它位于页面的底部。 我想要做的是,最后的相对布局总是保持在页面的底部,同样如果屏幕内只有一个图像。 如何修改我的代码以实现我的目标?以编程方式修复页面底部的相对布局
//SCROLL VIEW
ScrollView scrollView = new ScrollView(this); //create a new scrollView
scrollView.setBackground(getResources().getDrawable(R.drawable.background)); //give the background gradient
scrollView.setLayoutParams(new ScrollView.LayoutParams(ScrollView.LayoutParams.MATCH_PARENT, //set the main params about the dynamic size of the scrollView
ScrollView.LayoutParams.MATCH_PARENT));
scrollView.setPadding(0, 20, 0, 0);
//LINEAR LAYOUT
LinearLayout linearLayout = new LinearLayout(this); //create a new linearLayout
linearLayout.setOrientation(LinearLayout.VERTICAL); //set the layout orientation
linearLayout.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,
LinearLayout.LayoutParams.WRAP_CONTENT));
for (i=0; i<= 3; i++) {
//RELATIVE LAYOUT
RelativeLayout relativeLayout = new RelativeLayout(this); //create a new relative layout
relativeLayout.setLayoutParams(new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.FILL_PARENT, //set main params about the width and height
RelativeLayout.LayoutParams.FILL_PARENT));
relativeLayout.setBackgroundColor(getResources().getColor(R.color.grayColor)); //set background color
LinearLayout.LayoutParams relativeParams = new LinearLayout.LayoutParams(
new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.MATCH_PARENT,
LinearLayout.LayoutParams.WRAP_CONTENT));
relativeParams.setMargins(20, 20, 20, 0);
relativeLayout.setLayoutParams(relativeParams); //set declared params about layout to the relativeLayout
relativeLayout.requestLayout();
//IMAGE VIEW
ImageView selectedPhoto = new ImageView(this); //create a new imageView
//imageView code here
//TEXT VIEWS
TextView numberCopies = new TextView(this); //create new TextView
numberCopies.setLayoutParams(new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT));
numberCopies.setGravity(Gravity.CENTER); //set position to the center in confront to the parent
RelativeLayout.LayoutParams layoutParamsNumberCopies = (RelativeLayout.LayoutParams) numberCopies.getLayoutParams();
layoutParamsNumberCopies.addRule(RelativeLayout.CENTER_HORIZONTAL); //add a rule to the layout params. We put his position at the horizontal center of the relative layout
numberCopies.setLayoutParams(layoutParamsNumberCopies); //set the layout rules to the textView
TextView priceCopies = new TextView(this);
priceCopies.setLayoutParams(new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT));
priceCopies.setGravity(Gravity.CENTER);
numberCopies.setPadding(25, 25, 25, 25);
priceCopies.setTextColor(getResources().getColor(R.color.redColor));
RelativeLayout.LayoutParams layoutParamsPriceCopies = (RelativeLayout.LayoutParams) priceCopies.getLayoutParams();
layoutParamsPriceCopies.addRule(RelativeLayout.ALIGN_PARENT_RIGHT);
layoutParamsPriceCopies.addRule(RelativeLayout.CENTER_VERTICAL);
priceCopies.setLayoutParams(layoutParamsPriceCopies);
relativeLayout.addView(selectedPhoto);
relativeLayout.addView(numberCopies);
relativeLayout.addView(priceCopies);
linearLayout.addView(relativeLayout);
}
//RELATIVE LAYOUT
RelativeLayout relativeLayoutOpenButton = new RelativeLayout(this); //create a new relative layout for add the main buttons
relativeLayoutOpenButton.setLayoutParams(new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.MATCH_PARENT, //add the params for the width and height
RelativeLayout.LayoutParams.WRAP_CONTENT));
relativeLayoutOpenButton.setBackgroundColor(getResources().getColor(R.color.blackColor)); //set the black background
relativeLayoutOpenButton.setPadding(10, 10, 10, 10); //set the padding
LinearLayout.LayoutParams relativeParamsOpenButton = new LinearLayout.LayoutParams(
new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.MATCH_PARENT,
LinearLayout.LayoutParams.WRAP_CONTENT));
relativeParamsOpenButton.setMargins(0, 20, 0, 0); //put a top margin for separate the black bar from the last image line
relativeParamsOpenButton.gravity = Gravity.BOTTOM; //set the gravity to the bottom
relativeLayoutOpenButton.setLayoutParams(relativeParamsOpenButton);
relativeLayoutOpenButton.requestLayout();
Button confirmButton = new Button(this); //create a new button
//code button here
relativeLayoutOpenButton.addView(confirmButton); //add the button to the view
scrollView.addView(linearLayout);
setContentView(scrollView);
}
感谢
答
你可以有一个相对的布局,它的内部layout.if你这样做,你将有永远是你应该把你在你相对顶部和底部滚动视图滚动视图和button.botton屏幕底部的按钮
<RelativeLayout>
<ScrollView> <!--set scrollview in top of relativelayout and top of button -->
<LinearLayout>
.
.
.
</LinearLayout>
</ScrollView>
<Button/> <!--set button in buttom of relativelayout-->
</RelativeLayout>
对不起,但我没有正确理解。你能解释得更好吗? – Hieicker
你应该在你的主布局中有一个RelativeLayout,然后在其中放置你想要的滚动视图和按钮。你应该将按钮放置在滚动视图的外部以及它的相对布局和按钮内部 – zohreh
我编辑我的答案。我希望它帮你 – zohreh