這裏是我的代碼:ChildView在過去的RelativeLayout無法看到當API> 20
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<Button
android:text="button"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
/>
<TextView
android:text="right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
/>
</RelativeLayout>
當API> 20,TextView的是蓋的按鈕,如何解決它,如果第一個孩子?是一個TextView,它不會發生。它在android中的錯誤?
下工作的很好? – jemy
添加屏幕截圖你要如何? –
我的聲望低於10,所以我無法上傳圖片。如果您將我的代碼複製到佈局文件夾中,並選擇低於21的預覽api,您將得到它 – jemy