1

そこで、画面上部の水平スクロールビューの中央にテキスト行を表示したいと思います。基本的に、テキストの一番上の行には現在のチューニングが表示され、その下には水平スクローラーが表示され、その下には後で画像を追加しますが、いくつかの異なることを試しましたが、すべてがプッシュしているようです画面から離れた水平スクローラー。これを行う方法について何か提案はありますか?これまでのコードは次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/black">

<HorizontalScrollView 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:scrollbars="none"
    android:layout_gravity="center" >

<LinearLayout 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:background="@color/near_black">

<Button
    android:id="@+id/e_button"
    android:text="@string/E" 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginRight="10sp"
    android:background="@null"
    android:textSize="50sp"
    android:textStyle="bold"
    android:textColor="@color/white">
</Button>

そして、これはいくつかのボタンで続き、私はすべてを閉じます。それで、これをどのように達成できるかについての提案はありますか?

4

1 に答える 1

1

ルートが垂直方向を使用するようにします LinearLayout

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@color/black">

Textview次に、上にa を追加するとうまくいくHorizontalScrollViewはずです。

于 2013-03-16T21:11:43.787 に答える