gpt4 book ai didi

android - 搜索栏长度操作

转载 作者:行者123 更新时间:2023-11-29 00:50:47 25 4
gpt4 key购买 nike

我在我的 Android 应用程序中使用搜索栏来设置音量。然而,搜索栏的长度太短了,不美观。那么有没有办法自定义搜索栏的长度?

最佳答案

XML 示例:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dip">
<SeekBar android:id="@+id/default_width_seek_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<SeekBar android:id="@+id/fixed_width_seek_bar"
android:layout_width="100dip"
android:layout_height="wrap_content" />
<SeekBar android:id="@+id/full_width_seek_bar"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<SeekBar android:id="@+id/padded_full_width_seek_bar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingLeft="8dip" android:paddingRight="8dip" />
</LinearLayout>

旁注:SeekBar 的拇指可以在一直移动到两侧时被剪掉。像上一个 SeekBar 那样的一点额外填充解决了这个问题。

关于android - 搜索栏长度操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2810053/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com