我有这个奇怪的问题。 我有这些按钮在按钮的文字在某些动作下移。 例如,我有选择微调框和选择之一使得一些按钮隐形有的则是可见的。 当我选择这些,可见所有的按钮都有自己的文字下移。 闲来无事转移,只是文本上的按钮。 我已经试过这在1.5和它工作得很好,没有文本被移位,但我有问题,与2.1和我真的无法弄清楚。 任何意见或帮助将是巨大的。 谢谢。
下面是该文件的XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TableLayout android:id="@+id/testpracHeader"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true">
<!-- android:background="#ff0000"-->
<TableRow>
<Spinner android:id="@+id/testprac_menu"
android:layout_width="200px"
android:layout_height="wrap_content"></Spinner>
<View android:id="@+id/header_space_buffer"
android:layout_width="40px"
android:layout_height="30px"
android:gravity="center"></View>
<Button android:text="New"
android:id="@+id/newInterval"
android:layout_width="80px"
android:layout_height="wrap_content"></Button>
</TableRow>
</TableLayout>
<TableLayout android:id="@+id/bottomStruct"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true">
<TableRow>
<Button android:layout_width="80px"
android:text="Replay"
android:id="@+id/replay"
android:layout_height="wrap_content"></Button>
<Button android:id="@+id/playInterval"
android:text="Play"
android:layout_width="160px"
android:layout_height="wrap_content"></Button>
<Button android:text="Submit"
android:id="@+id/submit"
android:layout_width="80px"
android:layout_height="wrap_content"></Button>
</TableRow>
</TableLayout>
</RelativeLayout>
当我使用testprac
微调,重播,新提交按钮进入隐身和播放按钮变得可见(这是我想要的)。 这似乎是,当这个问题似乎开始。 播放按钮的文字完全消失(可能转移到低看),当我回去的其他按钮的可见我得到如下所示的问题。 左边是使用微调面前的问题,而右边是问题。 我不知道这是否就是导致此微调。