问题与按钮文本换档(Issue with button text shifting)

2019-10-22 21:03发布

我有这个奇怪的问题。 我有这些按钮在按钮的文字在某些动作下移。 例如,我有选择微调框和选择之一使得一些按钮隐形有的则是可见的。 当我选择这些,可见所有的按钮都有自己的文字下移。 闲来无事转移,只是文本上的按钮。 我已经试过这在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微调,重播,新提交按钮进入隐身和播放按钮变得可见(这是我想要的)。 这似乎是,当这个问题似乎开始。 播放按钮的文字完全消失(可能转移到低看),当我回去的其他按钮的可见我得到如下所示的问题。 左边是使用微调面前的问题,而右边是问题。 我不知道这是否就是导致此微调。

Answer 1:

我认为这是使用时的错误Spinner的内线RelativeLayout 。 如果您尝试根布局更改为LinearLayout you2ll看到它按预期工作。

你原来的布局更改:

  1. 根布局改变到的LinearLayout。
  2. 一个虚设视图之间加入TableLayout s到它们分开的顶部和底部。

注:我发现你的问题,而试图解决此 。 似乎相似。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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: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>

<View  
        android:layout_width="fill_parent" 
        android:layout_height="0dp"
        android:layout_weight="1"/>

<TableLayout android:id="@+id/bottomStruct" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content">
    <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>

</LinearLayout>


Answer 2:

该文本按钮内部转移? 可能是一个错误。 你有没有试过在Android 2.2?



文章来源: Issue with button text shifting