0
我確定有一個基本的答案,但我還在學習,我不太確定。 我有一個在開始屏幕上有幾個按鈕的應用程序。它適用於Nexus One(仿真器)和Samsung S2(設備);可能是因爲屏幕尺寸相同。但是,當我預覽平板電腦上的所有屏幕時,該按鈕完全展開並且非常小。在其他設備上,它們彼此相隔一半,看起來不太好。我已經嘗試過match_parent和wrap_content,但這並沒有幫助,我該如何使用一些.xml代碼或佈局屬性來確保按鈕不會彼此嵌套但仍填充屏幕(我使用相對佈局)? !感謝任何能夠回答的人。更改多個設備上的佈局?
在layout_height/width/align中是否有某些東西可以改變?
<Button
android:id="@+id/button10"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/button9"
android:layout_alignBottom="@+id/button9"
android:layout_alignRight="@+id/button8"
android:text="Info" />
我一直在尋找類似的東西,但我想也許有解決它(機器人更簡單的方法:layout_height什麼)。謝謝。我會再讀一遍。 –