有人能帮助我吗?两个图像视图不会同时显示。这是代码:
<?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="50dp"
android:layout_marginTop="10dp"
android:background="#790000"
android:orientation="vertical" >
<ImageView
android:id="@+id/beautyico"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dp"
android:src="@drawable/beauty"
android:layout_gravity="right"
/>
<ImageView
android:id="@+id/textico"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dp"
android:src="@drawable/icotxt"
android:layout_gravity="left"
/>
</LinearLayout>
答案 0 :(得分:1)
由于线性布局的方向是垂直的,因此您似乎没有足够的高度。
更改此
android:layout_height="50dp"
进入
android:layout_height="wrap_content"