LinerLayout と 1 つの Facebook ログイン ボタン イメージを使用しています。上部の 50 dp からの余白を維持し、画像を中央揃えに保ちたい。次のコードを使用しているときに画面イメージが中央に表示されない場合に依存します
<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>