在Android開發中我是初學者。我剛纔已經main.xml中文件中創建一個按鈕如何在Android中爲Button提供固定的寬度和高度
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Button
android:text="Click"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
我只是給Android的整數值,但我得到了錯誤 錯誤:錯誤:整數類型不允許
如何可以給固定的寬度和高度按鈕在這裏? 和 android:layout_width和android:width之間的主要區別是什麼?
謝謝。
瞭解這些字段實際上的含義。 – JoxTraex 2012-02-23 06:34:11