如何获取android中心视图的左边距?

时间:2015-05-31 07:33:49

标签: android xml

我有一个以xml为中心的视图:android:layout_centerHorizo​​ntal =“true”。如何获取它的leftMargin,以便我可以将其与其对齐?

我尝试在居中的视图上使用getLayoutParams,但它不起作用。它似乎报告了一个0的leftMargin。

我还尝试使用(screenWidth-view width)/ 2来计算leftMargin,但它的值略高于预期值。更具体地说,这是我的代码:

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

    TextView button1 = (TextView) findViewById(R.id.button1);
    RelativeLayout.LayoutParams params=(RelativeLayout.LayoutParams)
    button1.getLayoutParams();
    params.height=102;
    params.width=114;
    params.topMargin =0;
    button1.setLayoutParams(params);
    params=(RelativeLayout.LayoutParams) button1.getLayoutParams();
    int leftMargin = params.leftMargin;

    TextView button2 = (TextView) findViewById(R.id.button2);
    params=(RelativeLayout.LayoutParams) button2.getLayoutParams();
    params.height=102;
    params.width=114;
    params.leftMargin =leftMargin;
    params.topMargin =102;
    button2.setLayoutParams(params);

    TextView button3 = (TextView) findViewById(R.id.button3);
    params=(RelativeLayout.LayoutParams) button3.getLayoutParams();
    params.height=102;
    params.width=114;
    params.leftMargin =(screenWidth-114)/2;
    params.topMargin =204;
    button3.setLayoutParams(params);

Button1以xml为中心。 Button2左对齐,不居中。 Button3或多或少地居中,但略微向右。

所以,

1)如何以xml为中心获取视图的左边距?

2)如何在代码中居中(确切地)一个视图? getDefaultDisplay报告的宽度是否高于实际屏幕宽度?

1 个答案:

答案 0 :(得分:0)

您可以直接询问布局以使视图对齐。例如,

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" 
    android:layout_height="match_parent">
    <TextView
        android:id="@+id/centered_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="Random text"/>

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@id/centered_view"
        android:layout_alignParentTop="true"
        android:text="Top Button"/>

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@id/centered_view"
        android:layout_alignParentBottom="true"
        android:text="Bottom Button"/>
</RelativeLayout>

编辑: 要获得居中视图的相对偏移量,这可能就足够了:

textView.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
        @Override
        public void onGlobalLayout() {
            Log.d(getClass().getSimpleName(), "top: " + textView.getTop() + " left: " + textView.getLeft());
            textView.getViewTreeObserver().removeGlobalOnLayoutListener(this);
        }
    });

请参阅:

View.getTop()View.getLeft()