2011-06-05 100 views

回答

1

嘗試在FrameLayout本身上設置drawable。 因爲wrap_content,FrameLayout將與文本大小相同,所以背景也是如此。動畫應該隻影響繪圖,而不是實際的佈局,所以當您爲其製作動畫時,它應該仍然有效。

<FrameLayout 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:background="@drawable/your_background"> 
    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Hello World" /> 
</FrameLayout> 
相關問題