2012-01-22 16 views
0

私は新人のプログラマーなので、検索エンジンを使用して回答を見つけることはできませんでしたが、私が尋ねているのはかなり基本的なものかもしれません。入力時の編集文字幅を広げる

問題1:

私は入力に自分の幅を広げるためにこれらのEditTextsのそれぞれを必要としています。私はそれぞれのビューでandroid:inputType="textCapSentences"を追加し、幅を "Wrap_content"に設定しようとしました - しかし、それはうまくいかないように見えますが、与えられたヒントは削除されました。

はここにそれのために私のコードです:

 <LinearLayout 
     android:id="@+id/namebar" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:orientation="horizontal" 
     android:paddingRight="20.0dip" 
     android:paddingLeft="20.0dip" 
     android:paddingTop="20.0dip" 
     android:layout_above="@+id/tavleframe" 
     > 
     <EditText 
      android:layout_width="wrap_content" 
      android:layout_height="fill_parent" 
      android:layout_weight="1.0" 
      android:background="@drawable/tavle" 
      android:gravity="center" 
      android:hint="@string/name_text" 
      android:textColor="#ffffffff" 
      Imageview.Scaletype="fill_parent" 
      android:inputType="textCapSentences" 
      /> 

     <EditText 
      android:layout_width="wrap_content" 
      android:layout_height="fill_parent" 
      android:layout_weight="1.0" 
      android:background="@drawable/tavle" 
      android:gravity="center" 
      android:hint="@string/name_text" 
      android:textColor="#ffffffff" 
      Imageview.Scaletype="fill_parent" 
      android:inputType="textCapSentences"/> 

     <EditText 
      android:layout_width="wrap_content" 
      android:layout_height="fill_parent" 
      android:layout_weight="1.0" 
      android:background="@drawable/tavle" 
      android:gravity="center" 
      android:hint="@string/name_text" 
      android:textColor="#ffffffff" 
      Imageview.Scaletype="fill_parent" 
      android:inputType="textCapSentences"/> 

     <EditText 
      android:layout_width="wrap_content" 
      android:layout_height="fill_parent" 
      android:layout_weight="1.0" 
      android:background="@drawable/tavle" 
      android:gravity="center" 
      android:hint="@string/name_text" 
      android:textColor="#ffffffff" 
      Imageview.Scaletype="fill_parent" 
      android:inputType="textCapSentences"/> 

     <EditText 
      android:layout_width="wrap_content" 
      android:layout_height="fill_parent" 
      android:layout_weight="1.0" 
      android:background="@drawable/tavle" 
      android:gravity="center" 
      android:hint="@string/name_text" 
      android:textColor="#ffffffff" 
      Imageview.Scaletype="fill_parent" 
      android:inputType="textCapSentences"/>            
    </LinearLayout> 

答えて

1
それはあなたが「動作しないように見える」によって何を意味するかを知るために役立つだろうが、私はアイデアを持っている

。幅をwrap_contentに設定していますが、layout_weightも1に設定しています。これにより、余分な水平スペースがすべて等しい数量のEditTextに分配されます。各EditTextからandroid:layout_weight属性を削除するだけです。

また、「それは与えられたヒントを削除しました」という意味を理解していません。

関連する問題