Relativelayout
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Relativelayout相关的知识,希望对你有一定的参考价值。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingTop="60dp"
android:paddingLeft="16dp"
android:paddingRight="16dp"
tools:context="com.dream.dream.MainActivity">
<ImageButton
android:scaleType="fitCenter"
android:layout_alignParentStart="true"
android:id="@+id/imageLeg"
android:src="@drawable/leg"
android:layout_width="100dp"
android:layout_height="100dp" />
<TextView
android:textSize="40sp"
android:text="高跟鞋"
android:layout_toRightOf="@id/imageLeg"
android:layout_alignTop="@id/imageLeg"
android:id="@+id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:textSize="40sp"
android:text="8厘米"
android:layout_toRightOf="@id/imageLeg"
android:layout_below="@id/text1"
android:id="@+id/text2"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
以上是关于Relativelayout的主要内容,如果未能解决你的问题,请参考以下文章
从自定义视图访问 RelativeLayout 时出现 NullPointerException
查看另一个 View 使用 RelativeLayout 还是?