0

我是 android 开发的初学者,我正在开发小型 android 应用程序。在我的应用程序中,我正在使用按钮。但包含图像和文字。一切正常,唯一的问题是我的文本显示在按钮中心和按钮末尾的图像我想要的图像和文本都在中心.. 我的按钮代码看起来像......

  <Button
                android:id="@+id/signup_button"
                android:layout_width="match_parent"
                 android:layout_height="48dip"
                 android:layout_marginTop="15dip"
                 android:layout_marginLeft="1dip"
                 android:background="@drawable/help_screen_buttons"
                 android:text="Sign up"
                 android:textColor="@color/maroon_font"
                 android:alpha="0.8" 
                 android:textSize="22dip"
                 android:drawableLeft="@drawable/tw_br"/>

他我只能将图像设置在左上角底部位置但不能设置在中心.. S 如何在按钮中心显示该图像和文本...需要帮助...谢谢...

4

2 回答 2

0

你可以简单地使用图像按钮

 <ImageButton
        android:id="@+id/imageButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:src="@drawable/image" />
于 2014-09-29T12:31:34.497 回答
0

我希望它对你有用:

<Button 
    android:id="@+id/startTelemoteButton" 
    android:text="@string/start_telemote"
    android:gravity="center"
    android:width="fill_parent"
    android:height="wrap_content" />
于 2013-02-11T10:26:05.597 回答