我创建了一个包含活动布局的scrollView。在scrollview中,我创建了一个垂直方向的线性布局,在其中,使用for循环,我创建了一些包含图像和textview的相对布局。我需要scrollview,因为在某些时刻我可以在布局中有很多图像,并且需要滚动屏幕。 这没关系,一切正常。我的问题在于。正如您在代码底部看到的,我创建了包含一个简单按钮的最后一个相对布局。我的问题是这个布局不会停留在页面的底部,而是在与屏幕的关系中上下移动。因此,如果仅有一个图像,则最后一个相对布局位于页面顶部,附加到图像。如果有很多图像,则它位于页面底部。 我想要做的是,如果屏幕内只有一个图像,则最后的相对布局始终位于页面的底部。 如何修改我的代码以实现我的目标?
//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);
}
由于
答案 0 :(得分:0)
你可以有一个相对布局,你应该将你的滚动视图和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>