0

垂直と水平の中央に textView10 を設定する必要があります。結果なしで多くのことを試しました...重力オプションを試しましたが、何もしませんでした..何か考えはありますか? textView10 は scrollview 内にあります。手伝ってくれてありがとう。

<?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent"
     android:background="#000000"
     android:orientation="vertical" >

 <LinearLayout 
     xmlns:android="http://schemas.android.com/apk/res/android" 
     android:orientation="horizontal" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_weight="1">

  <TextView
      android:layout_width="151dp"
      android:layout_height="fill_parent"
      android:textSize="15pt" />

  <ScrollView
      android:id="@+id/scrollView10"
      android:layout_width="wrap_content"
      android:layout_height="match_parent"
      android:background="#000000" >

  <TextView
      android:id="@+id/textView10"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:background="#000000"
      android:gravity="center_vertical"
      android:textAlignment="center"
      android:textColor="#ffffff"
      android:textSize="13sp"
      android:textStyle="italic" />

  </ScrollView>      

 </LinearLayout>

     <Button
         android:id="@+id/button10"
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:text="Chiudi" />

</LinearLayout>
4

3 に答える 3

1

外側のレイアウトを RelativeLayout に変更し、ScrollView を親の中央に配置します。中央の要素に対して他の要素を配置する

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/RelativeLayout1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:orientation="horizontal" >
    <TextView
        android:id="@+id/TextView1"
        android:layout_width="151dp"
        android:layout_height="fill_parent"
        android:textSize="15pt" />
    <ScrollView
        android:id="@+id/scrollView10"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:background="#000000" >
        <TextView
            android:id="@+id/textView10"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:background="#000000"
            android:gravity="center_vertical"
            android:textAlignment="center"
            android:textColor="#ffffff"
            android:textSize="13sp"
            android:textStyle="italic" />
    </ScrollView>
</RelativeLayout>
于 2012-12-21T21:35:38.280 に答える
0

TextView を RelativeLayout 内に配置し、その RelativeLayout を ScrollView 内に配置します。

次に、TextView 内で android:layout_centerInParent="true" を設定します。

于 2012-12-21T21:35:41.017 に答える