0

ねえ、私は 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>

画面の右側にボタンを配置したいのですが、表示されません。

ありがとう。

4

6 に答える 6

1

外側の LinearLayout の代わりに RelativeLayout を使用します。

次に、画像ビューを左に、ボタンを右に配置できます。

于 2013-01-02T11:41:09.917 に答える
0

試してみてください:

<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_marginLeft="20dip"
        android:layout_marginRight="6dip"
        android:background="@drawable/ic_launcher" />

    <RelativeLayout
        android:id="@+id/linearLayout2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/linearLayout"
        android:gravity="center_horizontal"
        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"
            android:layout_below="@+id/txt3"
             />

        <TextView
            android:id="@+id/txt2"
            android:layout_width="match_parent"
            android:layout_height="34dp"
            android:layout_below="@+id/txt4"
            android:text="Importar_Contactos" />

        <Button
            android:id="@+id/miPerfil"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_marginLeft="6dip"
            android:onClick="MiPerfil"
            android:text="Button" />
    </RelativeLayout>
</LinearLayout>
于 2013-01-02T11:58:47.570 に答える
0

使用するRelativeLayout場合は、ボタン内のプロパティを使用しandroid:layout_alignParentRight="true"てボタンを右に配置できます。

于 2013-01-02T11:49:18.003 に答える
0

子linearLayout内のボタンコードを試してください

<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"  />


<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>

于 2013-01-02T11:50:48.033 に答える
0

向きを「垂直」に変更します。
それよりもうまく動作します。

于 2013-01-03T12:16:55.253 に答える
0

ご要望に応じて XML を編集しました。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/white"
android:orientation="vertical" >

<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_marginLeft="20dip"
        android:layout_marginRight="6dip" />

    <LinearLayout
        android:id="@+id/linearLayout2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/linearLayout"
        android:gravity="center_horizontal"
        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" />

        <LinearLayout
            android:id="@+id/linearLayout2"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_toRightOf="@id/linearLayout"
            android:gravity="center"
            android:orientation="horizontal"
            android:weightSum="2" >


            <TextView
                android:id="@+id/txt2"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text=" Importar_Contactos" />

            <Button
                android:id="@+id/miPerfil"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:gravity="center"
                android:text="dsfsd" />
        </LinearLayout>
    </LinearLayout>
</LinearLayout>

</LinearLayout>

ボタンのレイアウトは、幅と高さが親と一致していたため、ボタンが後ろに隠れていました。別の子線形レイアウトを使用しました。

于 2013-01-02T11:56:36.050 に答える