ADK を扱っていますが、問題があります。私は LinearLayout を使用しており、オブジェクトをレイアウトの中央と中央に配置したいと考えています。
これが私のコードです
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center_horizontal|center_vertical"
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center_horizontal|center_vertical"
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center_horizontal|center_vertical"
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center_horizontal|center_vertical"
</LinearLayout>
それでも、TOP CENTER または左に移動します。LinearLayout の代わりに何か他のものを使用する必要がありますか? または、センタリングとミドルリングのための特別なコードはありますか?
助けてくれてありがとう!
注: 不要な部分は削除されます。