4
有誰知道如何通過代碼設置最小和最大SeekBar
的高度?我想重現與以下XML摘錄相同的行爲:SeekBar minHeight和maxHeight的代碼
<SeekBar android:minHeight="6dip"
android:maxHeight="6dip" ... />
有誰知道如何通過代碼設置最小和最大SeekBar
的高度?我想重現與以下XML摘錄相同的行爲:SeekBar minHeight和maxHeight的代碼
<SeekBar android:minHeight="6dip"
android:maxHeight="6dip" ... />
我不知道是否有代碼。我做到這一點創建具有最大高度和其他屬性的XML,並在其定義充氣搜索條:
在XML:
<?xml version="1.0" encoding="utf-8"?>
<SeekBar xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:progressDrawable="@drawable/custom_player_seekbar_background"
android:paddingTop="10px"
android:paddingBottom="10px"
android:thumb="@drawable/bt_do_player"
android:paddingLeft="30px"
android:paddingRight="30px"
android:minHeight="6dip"
android:maxHeight="6dip"
android:layout_height="wrap_content"
android:layout_centerVertical="true"/>
並在Java代碼:
volumeSeekBarPL = (SeekBar) getLayoutInflater().inflate(R.layout.custom_seek_bar, null);
它的工作完美!非常感謝! – Alesqui