计算器布局,用的TableLayout,怎么调都有列上面的Button都跑出去。
终于在TableLayout里的元素为什么宽度没有占满父控件里面找到了解决方法:
<Button android:text="xx"
android:id="@+id/btn_xx"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
/>