在我的应用程序中,我将一个活动视为一个对话框主题,其中包含一些按钮和文本区域。 我的问题是按钮在主题中是一个较小的按钮文本并不完全可见。请任何人帮我增加主题大小或其他一些答案,以解决这个问题,谢谢...... 这里我附上了图片和布局文件。
MyTheme是:
<?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>
答案 0 :(得分: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>