AppCompatSeekBar 左右填充移除?
AppCompatSeekBar left and right padding removal?
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.SocialMob.CustomViews.CustomTextView
android:id="@+id/textViewCurrentDurationMusic"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="@dimen/_3sdp"
android:singleLine="true"
android:text="01:00"
android:textColor="#AEAEAE"/>
<android.support.v7.widget.AppCompatSeekBar
android:id="@+id/seekBarMusic"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:max="100"
android:paddingLeft="0px"
android:thumbOffset="-1px"
android:paddingRight="0px"
android:progress="60"
android:layout_margin="0dp"
app:theme="@style/SeekBarTheme"
app:paddingEnd="0px"
app:paddingStart="0px" />
<com.SocialMob.CustomViews.CustomTextView
android:id="@+id/textViewTotalDurationMusic"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="end"
android:padding="@dimen/_3sdp"
android:text="05:00"
android:textColor="#AEAEAE"/>
</LinearLayout>
我正在做一个带有 SeekBar 的音乐播放器应用程序,我想删除 SeekBar 两端的额外填充。我试过 0 填充、0 边距、-ve 填充和 -ve 边距。
为什么不尝试通过 java code.try 下面的示例代码对其进行修改。
seekBar.setPadding(0, 0, 0, 0);
这可能对你有帮助。
设置以下属性。
android:paddingStart="0dp"
android:paddingEnd="0dp"
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.SocialMob.CustomViews.CustomTextView
android:id="@+id/textViewCurrentDurationMusic"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="@dimen/_3sdp"
android:singleLine="true"
android:text="01:00"
android:textColor="#AEAEAE"/>
<android.support.v7.widget.AppCompatSeekBar
android:id="@+id/seekBarMusic"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:max="100"
android:paddingLeft="0px"
android:thumbOffset="-1px"
android:paddingRight="0px"
android:progress="60"
android:layout_margin="0dp"
app:theme="@style/SeekBarTheme"
app:paddingEnd="0px"
app:paddingStart="0px" />
<com.SocialMob.CustomViews.CustomTextView
android:id="@+id/textViewTotalDurationMusic"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="end"
android:padding="@dimen/_3sdp"
android:text="05:00"
android:textColor="#AEAEAE"/>
</LinearLayout>
我正在做一个带有 SeekBar 的音乐播放器应用程序,我想删除 SeekBar 两端的额外填充。我试过 0 填充、0 边距、-ve 填充和 -ve 边距。
为什么不尝试通过 java code.try 下面的示例代码对其进行修改。
seekBar.setPadding(0, 0, 0, 0);
这可能对你有帮助。
设置以下属性。
android:paddingStart="0dp" android:paddingEnd="0dp"