当前位置: 代码迷 >> 综合 >> RelativeLayout 如果控件之间不进行相对定位默认是叠加在一起的
  详细解决方案

RelativeLayout 如果控件之间不进行相对定位默认是叠加在一起的

热度:19   发布时间:2023-12-14 02:49:09.0

RelativeLayout 如果控件之间不进行相对定位默认是叠加在一起的


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"android:paddingRight="@dimen/activity_horizontal_margin"android:paddingTop="@dimen/activity_vertical_margin"android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity"><TextView android:text="@string/hello_world"android:layout_width="wrap_content"android:layout_height="wrap_content"android:id="@+id/textView" /><TextView android:text="@string/action_settings"android:layout_width="wrap_content"android:layout_height="wrap_content"android:id="@+id/textView1" /><TextView android:text="@string/action_settings"android:layout_width="wrap_content"android:layout_height="wrap_content"android:id="@+id/textView2" />
</RelativeLayout>


  相关解决方案