我正在尝试将 3 个视图横向并排放置:TextView - SeekBar - TextView。这是我的插图: 0:00 ---0----- 0:00
我希望 SeekBar 可以弯曲并在每侧有两个计数器,但最后一个 textView 不显示。在 android 中还没有真正了解这个布局的东西。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/player_background"
android:orientation="vertical" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/Progress01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="15sp"
android:textIsSelectable="false"
android:text="@string/progress"
android:textColor="@color/player_duration_progress"/>
<SeekBar
android:id="@+id/SeekBar01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/Duration01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="15sp"
android:textIsSelectable="false"
android:text="@string/duration"
android:textColor="@color/player_duration_progress"/>
</LinearLayout>
</LinearLayout>
也许线性布局在这里不是最合适的?