1

我正在尝试使用屏幕下方的 X 和 Y 坐标将元素添加到 Android 中的屏幕,但是当它加载时屏幕不会滚动。

我的布局代码

<ScrollView  
xmlns:android="http://schemas.android.com/apk/res/android"  
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:scrollbars="vertical"
android:id="@+id/ScrollView"
android:background="#16A901"
>

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/inner"
    android:background="#b200C4"
    >

</RelativeLayout>
</ScrollView>

我的 Java 代码

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_xycords);

    Display display = getWindowManager().getDefaultDisplay();
    Point size = new Point();
    display.getSize(size);
    int maxX = size.x; 
    int maxY = size.y;
    System.out.println("bar maxX "+maxX+" maxY "+maxY);

    ScrollView sv= (ScrollView)findViewById(R.id.ScrollView);

    RelativeLayout inner = (RelativeLayout)findViewById(R.id.inner);

    Button button = new Button(this);
    button.setBackgroundResource(R.drawable.black_rect_border_yellow);
    button.setText("Test 1 2 3");
    button.setX(10);
    button.setY(661);//652 is the maxY in my set up so this will obscure part of it

    LayoutParams wrap= new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT);
    wrap.setMargins(0, 0, 0, 0);
    //wrap.addRule(RelativeLayout.ALIGN_LEFT,R.id.vLine);
    //wrap.addRule(RelativeLayout.ALIGN_TOP,R.id.hLine);
    inner.addView(button, wrap);
}

我最终得到一个按钮,其中一部分在屏幕外,但它不会滚动显示其余部分。

知道我做错了什么吗?

4

1 回答 1

0

您必须将 inner 设置layout_height为大于按钮值的y值:

...
inner.addView(button, wrap);

FrameLayout.LayoutParams params = (FrameLayout.LayoutParams)inner.getLayoutParams();
params.height = 661 + 48;
inner.setLayoutParams(params);
于 2013-10-11T22:31:42.120 回答