ねえ、私は Android アプリをやっています。Android 画面にボタン mi_perfil が表示されない理由を教えてください。これは私のレイアウトコードです:
<LinearLayout
android:id="@+id/linearLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
>
<ImageView
android:id="@+id/foto"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_marginRight="6dip"
android:layout_marginLeft="20dip" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/linearLayout2"
android:gravity="center_horizontal"
android:layout_toRightOf="@id/linearLayout"
android:orientation="vertical" >
<TextView
android:id="@+id/txt3"
android:layout_width="match_parent"
android:layout_height="34dp"
/>
<TextView
android:id="@+id/txt4"
android:layout_width="match_parent"
android:layout_height="34dp"
/>
<TextView
android:id="@+id/txt2"
android:layout_width="match_parent"
android:layout_height="34dp"
android:text="@string/Importar_Contactos" />
</LinearLayout>
<Button android:id="@+id/miPerfil"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:text="@string/boton_mi_perfil"
android:onClick="MiPerfil"
android:layout_marginRight="20dip"
android:layout_marginLeft="6dip" />
</LinearLayout>
画面の右側にボタンを配置したいのですが、表示されません。
ありがとう。