私は何をしようとしても中心にならない大きな editText を持っています。imageText の重力を中央に設定しても、アクティビティの左側を抱きしめているため、水平および垂直の線形レイアウトに配置してから、その重力を中央に設定しようとしました。
<EditText
android:id="@+id/editText1"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:ems="10"
android:gravity="center"
android:lines="8"
android:maxLines="8"
android:minLines="8" >
</EditText>
そして、これが何をしているのかです:
完全な xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/corkboard"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="horizontal" >
<ToggleButton
android:id="@+id/facebook_tb"
android:background="@drawable/facebook_toggle"
android:layout_margin="10dp"
android:layout_width="60dp"
android:layout_height="60dp"
android:scaleType="centerInside"
android:textOn=""
android:textOff=""
android:focusable="false"
android:focusableInTouchMode="false"
android:layout_centerVertical="true"/>
<ToggleButton
android:id="@+id/twitter_tb"
android:background="@drawable/twitter_toggle"
android:layout_margin="10dp"
android:layout_width="60dp"
android:layout_height="60dp"
android:scaleType="centerInside"
android:textOn=""
android:textOff=""
android:focusable="false"
android:focusableInTouchMode="false"
android:layout_centerVertical="true"/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="horizontal" >
<ToggleButton
android:id="@+id/googleplus_tb"
android:background="@drawable/googleplus_toggle"
android:layout_margin="10dp"
android:layout_width="60dp"
android:layout_height="60dp"
android:scaleType="centerInside"
android:textOn=""
android:textOff=""
android:focusable="false"
android:focusableInTouchMode="false"
android:layout_centerVertical="true"/>
<ToggleButton
android:id="@+id/tumblr_tb"
android:background="@drawable/tumblr_toggle"
android:layout_margin="10dp"
android:layout_width="60dp"
android:layout_height="60dp"
android:scaleType="centerInside"
android:textOn=""
android:textOff=""
android:focusable="false"
android:focusableInTouchMode="false"
android:layout_centerVertical="true"/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
</LinearLayout>
<ImageButton
android:id="@+id/angry_btn"
android:background="@drawable/pushpin"
android:layout_width="80dp"
android:layout_height="80dp"
android:shadowDx="0"
android:shadowDy="0"
android:layout_gravity="center"
android:shadowRadius="5"
/>
<EditText
android:id="@+id/editText1"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:ems="10"
android:gravity="center"
android:lines="8"
android:maxLines="8"
android:minLines="8" >
</EditText>
</LinearLayout>