0

我需要将 textView10 设置在垂直和水平的中心。我尝试了很多都没有结果......我尝试了重力选项但没有......任何想法?textView10 在滚动视图中。感谢帮助。

<?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 回答
1
<?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:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:orientation="horizontal" >

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

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

        <TextView
            android:id="@+id/textView10"
            android:layout_width="match_parent"
            android:layout_height="320dp"
            android:background="#000000"
            android:gravity="center"
            android:textColor="#ffffff"
            android:textSize="13sp"
            android:text="Hi What is your name"
            android:textStyle="italic" />
    </ScrollView>
</LinearLayout>

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

于 2012-12-21T22:48:59.870 回答
0

将TextView 放在RelativeLayout 中,然后将该RelativeLayout 放在ScrollView 中。

然后,在 TextView 中设置 android:layout_centerInParent="true"

于 2012-12-21T21:35:41.017 回答