TextView - SeekBar - TextView の 3 つのビューを横に並べようとしています。これが私のイラストです: 0:00 ------0------ 0:00
SeekBar を曲げて、両側に 2 つのカウンターを配置したいのですが、最後の 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>
ここでは、linearlayout が最適ではないのでしょうか。