4
爲什麼android:clipChildren =「false」不起作用?我想實現與CSS overflow相同的效果:可見,以便即使位於其父級佈局之外的子視圖也可見。我嘗試過這樣的事情,雖然Eclipse中的圖形佈局顯示正確的行爲,但在手機上它不起作用。Android ViewGroup剪輯不起作用
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#0000FF"
android:clipChildren="false"
android:clipToPadding="false" >
<RelativeLayout
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_alignParentLeft="true"
android:background="#FF0000"
android:clipChildren="false"
android:clipToPadding="false" >
<RelativeLayout
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_marginLeft="120dp"
android:background="#00FF00" />
</RelativeLayout>
</RelativeLayout>
這很有趣,但我不能相反讓父母把他們的孩子剪短。但我有LinearLayout。也許這是原因? – Gangnus 2012-01-18 16:14:17