为什么按钮中的文字开始如此正确以至于它被切断了?

时间:2014-11-27 17:16:59

标签: android xml button

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context="com.example.app_talker_service.ConnectionManagerActivity" >

<LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >
        <TextView
            android:id="@+id/selectSenderTextView"
            android:layout_width="match_parent"
            android:layout_height="30dp"
            android:layout_weight="1"
            android:text="@string/select_app_sender" />
        <TextView
            android:id="@+id/selectReceiverTextView"
            android:layout_width="match_parent"
            android:layout_height="30dp"
            android:layout_weight="1"
            android:text="@string/select_app_receiver" />
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >
        <Spinner 
            android:id="@+id/senderAppSpinner"
            android:layout_width="match_parent"
            android:layout_height="30dp"
            android:layout_weight="1"/>
        <Spinner 
            android:id="@+id/receiverAppSpinner"
            android:layout_width="match_parent"
            android:layout_height="30dp"
            android:layout_weight="1"/>
    </LinearLayout>
    <Button 
           android:id="@+id/checkConnectionsButton"
           android:layout_width="150dp"
           android:layout_height="60dp"
           android:layout_gravity="center"
           android:textSize="18sp"
           android:textStyle="bold"
           android:text="@string/check_connections"/>
</LinearLayout>

</ScrollView>

enter image description here

为什么我的按钮中的文字开始到目前为止它被切断了?我试着把paddingleft和paddingright,textalignment,所有东西都放在一边,但是我没有把文字切掉的唯一方法就是把按钮的宽度设置得很大..

1 个答案:

答案 0 :(得分:0)

请改为尝试:

<Button 
    android:id="@+id/checkConnectionsButton"
    android:layout_width="150dp"
    android:layout_height="60dp"
    android:gravity="left"
    android:textSize="18sp"
    android:textStyle="bold"
    android:text="@string/check_connections"/>

注意:如果您愿意,可以替换android:gravity="center_horizontal"

此外,您可能希望将textSize降低到16sp或更低,看看你得到了什么。