<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="10dp"> <ImageView android:id="@+id/image" android:src="@drawable/one" android:layout_width="120dp" android:layout_height="120dp" android:layout_centerVertical="true"/> <RelativeLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="10dp" android:layout_toRightOf="@+id/image" android:layout_centerVertical="true"> <TextView android:id="@+id/title" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="咖啡" android:textSize="20sp" android:textColor="@color/black"/> <TextView android:id="@+id/price" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="价格:" android:textSize="20sp" android:layout_below="@id/title" android:textColor="#eda200" android:layout_marginTop="10dp"/> <TextView android:id="@id/price" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@id/title" android:layout_marginLeft="15dp" android:layout_marginTop="10dp" android:layout_toRightOf="@id/title" android:text="20" android:textColor="#FF8F03" android:textSize="20sp" /> </RelativeLayout>
时间: 2024-01-26 17:02:39 浏览: 116
Android常用布局(FrameLayout、LinearLayout、RelativeLayout)详解
这是一个简单的 Android 布局文件,其中包含一个 ImageView 和两个 TextView。ImageView 显示一个咖啡图片,而 TextView 显示咖啡的标题和价格。其中价格需要注意一下,有两个 TextView 都设置了 id 为 price,应该修改其中一个的 id。整体布局使用了 RelativeLayout,ImageView 和第二个 RelativeLayout 分别居中和靠左对齐。
阅读全文