直接子view,RelativeLayout不支持超出RelativeLayout边界,LinearLayout支持
RelativeLayout 代码
<RelativeLayout xmlns:android= "http://schemas.android.com/apk/res/android"
android :layout_width="match_parent"
android :layout_height="match_parent"
android :weightSum="1">
<TextView
android :layout_width="555dp"
android :layout_height="1200dp"
android :text="New Text"
android :id="@+id/textView2"
/>
</RelativeLayout >
效果
LinearLayout 代码
<LinearLayout xmlns:android= "http://schemas.android.com/apk/res/android"
android :layout_width="match_parent"
android :layout_height="match_parent"
android :weightSum="1"
android :orientation="vertical">
<TextView
android :layout_width="555dp"
android :layout_height="1200dp"
android :text="New Text"
android :id="@+id/textView2"
/>
</LinearLayout >
效果