如何更改切换小部件的高度?

时间:2014-03-06 08:17:43

标签: android xml widget

我想让我的开关小部件更大,所以我必须改变开关的高度。

但我没有解决方案。

我看了这个问题:Change height of switch

我做了这样的抽奖:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" 
    android:shape="rectangle"  android:width="0dp" android:height="30dp">
    <solid android:color="#FF4444"  />
</shape>

然后我像这样设置我的开关:

<Switch
android:id="@+id/sw_trackLiveData"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/tv_liveData"
android:layout_alignRight="@+id/btn_stoptrip1"
android:layout_alignLeft="@+id/btn_stoptrip1"
android:layout_marginTop="10dp"
android:thumbTextPadding="25dp"
android:switchMinWidth="56dp" 
android:track="@drawable/roundedbutton"
android:layout_centerHorizontal="true"
android:textSize="20dp" />

但它不起作用。我做错了什么。谁能举个例子怎么做?或者任何人都可以指导我完成这个过程吗?

3 个答案:

答案 0 :(得分:4)

更改您的roundedButton.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >
    <size
        android:height="20dp"
        android:width="56dp" />
    <solid android:color="#FF4444" />

</shape>

答案 1 :(得分:2)

在drawable(custom_selector.xml)中将您的开关选择器更改为以下

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
  <item android:state_checked="true">
    <shape
      android:shape="rectangle"
      android:visible="true"
      android:dither="true"
      android:useLevel="false">
      <gradient
        android:startColor="@color/colorAccent"
        android:endColor="@color/colorAccent"
        android:angle="270"/>
      <corners
        android:radius="20dp"/>
      <size
        android:width="37dp"
        android:height="37dp" />
      <stroke
        android:width="4dp"
        android:color="#0000ffff"/>
    </shape>
  </item>
  <item android:state_checked="false">
    <shape
      android:shape="rectangle"
      android:visible="true"
      android:dither="true"
      android:useLevel="false">
      <gradient
        android:startColor="@android:color/white"
        android:endColor="@android:color/white"
        android:angle="270"/>
      <corners
        android:radius="20dp"/>
      <size
        android:width="37dp"
        android:height="37dp" />
      <stroke
        android:width="4dp"
        android:color="#0000ffff"/>
    </shape>
  </item>
</selector>  

并在drawable(custom_track.xml)中创建跟踪

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
  android:shape="rectangle"
  android:visible="true"
  android:dither="true"
  android:useLevel="false">
  <gradient
    android:startColor="@color/card_background"
    android:endColor="@color/card_background"
    android:angle="270"/>
  <corners
    android:radius="20dp"/>
  <size
    android:width="50dp"
    android:height="26dp" />
</shape>

在Xml文件中:

<Switch
  android:id="@+id/switch"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_centerHorizontal="true"
  android:layout_marginRight="16dp"
  android:textOff="OFF"
  android:scaleX="2"
  android:scaleY="2"
  android:textOn="ON"
  android:thumb="@drawable/customswitchselector"
  android:track="@drawable/custom_track" />

答案 2 :(得分:0)

只需更改

android:layout_width="wrap_content"
android:layout_height="wrap_content"

 android:layout_width="200dp"
 android:layout_height="100dp"