0
這是我個XML(基本上有兩種觀點:內部的線性[B
]相對[A
])設置視圖的寬度大於父視圖的寬度?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/A"
android:layout_width= "wrap_content"
android:layout_height= "wrap_content" >
<LinearLayout
android:id="@+id/B"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
</LinearLayout>
</<RelativeLayout>
我設置的w*10
屏幕寬度的B
10倍,即寬度:
RelativeLayout.LayoutParams para = new RelativeLayout.LayoutParams(w*10, h);
B.setLayoutParams(para);
當我動畫B
,
ObjectAnimator animation2 = ObjectAnimator.ofFloat(B, "x", -w)
它顯示B
的寬度是w
而不是w*10
,好像A
正在作爲父視圖,它正在限制其寬度。
我應該怎麼做B
的寬度爲w*10
?
試過了'A.requestLayout()',但它仍然沒有包裝'B' .. –