0

在我的应用程序中,我将一项活动视为具有一些按钮和文本区域的对话框主题。我的问题是主题中的按钮较小,而且按钮文本也不完全可见。请任何人帮助我增加主题大小或解决此问题的其他答案...` 这里我附上了图像和布局文件。

在此处输入图像描述

我的主题是:

    <?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

    <solid android:color="#565656" />

    <stroke
        android:width="5dp"
        android:color="#ffff8080" />

    <corners android:radius="30dp" />

    <padding
        android:bottom="20dp"
        android:left="20dp"
        android:right="20dp"
        android:top="20dp" />

</shape>

活动布局文件

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/tw_taskid"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Task Name:"
            android:textStyle="bold" />

        <TextView
            android:id="@+id/textviewdis_listname"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:textStyle="bold" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:weightSum="2" >

        <Button
            android:id="@+id/textviewdateid"
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:textSize="10sp"
            android:background="@drawable/buttonselector" />

        <Button
            android:id="@+id/btnid_date"
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:textSize="10sp"
            android:background="@drawable/buttonselector"
            android:text="@string/changedate" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/btnid_time"
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:textSize="10sp"
            android:background="@drawable/buttonselector" />

        <Button
            android:id="@+id/btnid_changetime"
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:textSize="10sp"
            android:background="@drawable/buttonselector"
            android:text="ChangeTime" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:orientation="horizontal"
        android:weightSum="2" >

        <Button
            android:id="@+id/btn_setalarm"
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:textSize="10sp"
            android:background="@drawable/buttonselector"
            android:text="Set-Alarm" />

        <Button
            android:id="@+id/btn_CancelAlarm"
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:textSize="10sp"
            android:background="@drawable/buttonselector"
            android:text="Cancel-Alarm" >
        </Button>
    </LinearLayout>



</LinearLayout>
4

1 回答 1

0

我得到了解决这个问题的方法,只是我删除了布局重量并将宽度设置为 150dp。

<LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:weightSum="2" >

        <Button
            android:id="@+id/textviewdateid"
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:textSize="10sp"
            android:background="@drawable/buttonselector" />

        <Button
            android:id="@+id/btnid_date"
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:textSize="10sp"
            android:background="@drawable/buttonselector"
            android:text="@string/changedate" />
    </LinearLayout>

进入

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
     >

    <Button
        android:id="@+id/textviewdateid"
        android:layout_width="150dp"
        android:layout_height="wrap_content"
        android:background="@drawable/buttonselector"
        android:textSize="15sp" />

    <Button
        android:id="@+id/btnid_date"
        android:layout_width="150dp"
        android:layout_height="wrap_content"
        android:background="@drawable/buttonselector"
        android:text="@string/changedate"
        android:textSize="15sp" />
</LinearLayout>
于 2013-07-12T12:00:35.943 回答