【问题标题】:Android ADT text on button按钮上的 Android ADT 文本
【发布时间】:2013-10-12 10:23:26
【问题描述】:

我已经创建了一个按钮:

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/textBox"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="84dp"
    android:text="@string/Button" />

但最后一行应该使按钮上的文本为:“按钮”。 但我得到的文字是“@string”。

另一个问题: 按钮中的文本右对齐。如何使它成为 CENTER?

【问题讨论】:

  • strings.xml 中是否有按名称显示的字符串按钮?

标签: android xml button


【解决方案1】:

这是因为您在 strings.xml 中没有任何名为 Button 的字符串。 这样做

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/textBox"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="84dp"
    android:text="Button" />

或者在你的 values/strings.xml 中创建一个新字符串

 <string name="Button">Button</string>

并在你的 xml 中使用它

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/textBox"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="84dp"
    android:text="@string/Button" />

【讨论】:

    【解决方案2】:

    您是否在string.xml 中写入了键名Button?? 修改为,

    <string name="Button">Test_Button</string>
    

    首先检查您的 xml 文件。 并将其对齐到中心,设置属性

    android:gravity="center"
    

    【讨论】:

      【解决方案3】:

      试试这个..

      <Button
          android:id="@+id/button1"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_below="@+id/textBox"
          android:layout_centerHorizontal="true"
          android:gravity="center"
          android:layout_marginTop="84dp"
          android:text="@string/Button" />
      

      【讨论】:

      • 我在按钮上看到文字:“但是”,它与右侧对齐。就像隐藏了一半的字符串...
      猜你喜欢
      • 2013-10-20
      • 2013-03-02
      • 2015-02-23
      • 2014-02-09
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2013-11-11
      • 1970-01-01
      相关资源
      最近更新 更多