0

我正在使用 LinerLayout 和一个 Facebook 登录按钮图像。我想保持顶部 50dp 的边距并保持图像居中对齐。当我使用以下代码时,取决于屏幕图像是否位于中心

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/background"
     tools:context=".MainActivity" >

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/loginwithfb" 
        android:layout_marginTop="50dp"
        android:layout_marginLeft="60dp"
       />

</LinearLayout>
4

0 回答 0