如何制作带有搜索栏和文本的 "block"?
How can I make a "block" with seekbar and text?
怎么做到的
如何在同一块中放入两个文本和一个搜索栏?
我可以把它们放在一起吗?
这是我当前的(糟糕的)代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/activity_libretto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:orientation="vertical"
>
<TextView
android:id="@+id/txt"
android:textAllCaps="false"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Hello"
android:paddingLeft="10dp"
android:background="@drawable/bg_button"
/>
<SeekBar
android:id="@+id/ProgressBar01"
android:layout_width="350dp"
android:paddingLeft="10px"
android:paddingRight ="10px"
android:textStyle="bold"
android:layout_height="match_parent"
android:layout_gravity="center"
android:max="10"
android:background="@drawable/bg_button"
android:secondaryProgress="0"
/>
</LinearLayout>
谢谢。
怎么做到的
如何在同一块中放入两个文本和一个搜索栏?
我可以把它们放在一起吗?
这是我当前的(糟糕的)代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/activity_libretto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:orientation="vertical"
>
<TextView
android:id="@+id/txt"
android:textAllCaps="false"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Hello"
android:paddingLeft="10dp"
android:background="@drawable/bg_button"
/>
<SeekBar
android:id="@+id/ProgressBar01"
android:layout_width="350dp"
android:paddingLeft="10px"
android:paddingRight ="10px"
android:textStyle="bold"
android:layout_height="match_parent"
android:layout_gravity="center"
android:max="10"
android:background="@drawable/bg_button"
android:secondaryProgress="0"
/>
</LinearLayout>
谢谢。