嘿,我正在做一个安卓应用程序,有人可以告诉我为什么我的安卓屏幕上没有显示按钮 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>
我想将按钮放在屏幕右侧,但它没有出现。
谢谢。