0

xmlファイルで相対レイアウトとスクロールビューを使用しました。[意味を取得]ボタンをクリックすると、コマンドの説明が表示されますが、データが重複しています。Plzはいくつかの解決策を提案しています。私のレイアウトxmlファイルは次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/img7"
     >

<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="490dip"
    android:orientation="vertical" >
     <Button
        android:id="@+id/button1"
        style="?android:attr/buttonStyleSmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:text=""
        android:background="@drawable/house1" />
     <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"

        android:layout_alignBottom="@+id/button1"
        android:layout_alignParentLeft="true"
        android:text="Enter Unix Command"
        android:textColor="#FF0000" 
        android:textSize="25sp"
        />

    <AutoCompleteTextView
        android:id="@+id/autoCompleteTextView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:layout_below="@+id/textView1"
        android:layout_marginTop="14dp"
        android:ems="10"
        android:hint="Start Typing Here........"
        android:textColor="#FF0000" >

        <requestFocus />
    </AutoCompleteTextView>

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/autoCompleteTextView1"
        android:text="Get Meaning"

        android:drawableLeft="@drawable/searchpic1"
        android:textColor="#FF0000"
        android:textSize="20sp" />
    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/button2"

        android:src="@drawable/book1" />

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/imageView1"
        android:text=""
        android:textColor="#FF0000"
         />
    <TextView
        android:id="@+id/textView3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:text="Cympac Software Solutions Pvt Ltd"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textColor="#228b22"
        android:background="#FFFFFF" 
        android:textStyle="bold"
        android:textSize="16sp"
        android:drawableLeft="@drawable/smallicon"/>





</RelativeLayout>

</ScrollView>

エミュレーターでは ここに画像の説明を入力してください

4

3 に答える 3

2

Orabigが言ったように、ScrollViewにのみ入れtextview2て、それより上にある必要がありtextview3ます。RelativeLayout親レイアウトとして使用します。他の2つの回答のコードに従ってください。うまくいくことを願っています

于 2012-08-25T09:27:26.100 に答える
1

layout_aboveこのようなテキストビュー変更コードのプロパティを追加します

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/imageView1"
    android:layout_above="@+id/textView3"
    android:text=""
    android:textColor="#FF0000"
/>

次に、そのテキストビューのスクロール可能なプロパティを追加します

yourTextView.setMovementMethod(new ScrollingMovementMethod());

テキストが利用可能なスペースよりも多くのスペースを必要とする場合、自動的にスクロールします。

于 2012-08-25T07:16:54.587 に答える
1

TextView を ScrollView に入れるだけです

 <ScrollView 
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:layout_below="@+id/imageView1"
   android:layout_above="@+id/textView3"
   >
   <TextView
      android:id="@+id/textView2"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:text=""
      android:textColor="#FF0000"
   />
</ScrollLayout> 
于 2012-08-25T08:17:52.257 に答える