3

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 が最適ではないのでしょうか。

4

3 に答える 3

2

代わりに RelativeLayout を使用します。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/Progress01"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"
        android:layout_marginRight="8dp"
        android:text="progress"
        android:textColor="#000000"
        android:textIsSelectable="false"
        android:textSize="15sp" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_toLeftOf="@+id/Duration01"
        android:layout_toRightOf="@+id/Progress01"
        android:orientation="horizontal" >

        <SeekBar
            android:id="@+id/SeekBar01"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </LinearLayout>

    <TextView
        android:id="@+id/Duration01"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:layout_marginLeft="8dp"
        android:text="duration"
        android:textColor="#000000"
        android:textIsSelectable="false"
        android:textSize="15sp" />

</RelativeLayout>
于 2013-06-07T06:58:50.457 に答える
1

問題はここにあります:

<SeekBar
        android:id="@+id/SeekBar01"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" 
        />

SeekBar の幅を fill_parent に設定して、他の TextView にスペースを残しません。

于 2013-06-07T06:59:50.070 に答える
0

SeekBar LayoutWidth を wrap_content に変更します。

以下を確認してください。

<SeekBar
    android:id="@+id/SeekBar01"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    />
于 2013-06-07T07:26:42.947 に答える