0

2 つの質問があります。

  1. 下の図のスピナーをテキストに近づけるにはどうすればよいですか?

ここに画像の説明を入力

次のxmlレイアウトを使用します

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

    <TextView
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="Check by" 
        android:layout_weight="1"
        android:textSize="20dp"/>

    <Spinner
        android:id="@+id/CheckBy"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:textSize="20dp" 
        android:enabled="false"/>

    <TextView
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="Outcome"
        android:layout_weight="1"
        android:textSize="20dp"/>

    <Spinner
        android:id="@+id/Outcome"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:textSize="20dp" 
        android:enabled="false"/>

</LinearLayout>
  1. 次の図のように、入力ボタンのテキストを変更し、クリックされたときに実行されるアクションを割り当てるにはどうすればよいですか?

ここに画像の説明を入力

4

3 に答える 3

1

入力ボタンのテキストは変更できません。デフォルトのキーボードにあります。カスタム ボタン テキストが必要な場合は、自分で作成する必要があります。

また、アクションをボタンに「割り当てる」ことはできませんが、public boolean onKeyDown (int keyCode, KeyEvent event)and/orpublic boolean onKeyUp (int keyCode, KeyEvent event)メソッド (または目的に適した他の方法) をオーバーライドする EditText のタイプを実装できます (テキスト フィールドのタイプが EditText であると仮定)。 )。メソッドについては、EditText のドキュメントを確認してくださいonKey...。より適切な方法で、目的の機能 (アクション) を実装できます。

于 2012-06-13T14:49:28.583 に答える
1

1) レイアウト設計の場合、以下のコードを使用します -

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


    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Check by" 
        android:textSize="20dp"


        />

    <Spinner
        android:id="@+id/CheckBy"
        android:layout_marginLeft="5dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20dp" 
        android:enabled="false"

       />

    <TextView
        android:layout_width="wrap_content"
        android:layout_marginLeft="5dp"
        android:layout_height="wrap_content"
        android:text="Outcome"
        android:textSize="20dp" 

         />

    <Spinner
        android:id="@+id/Outcome"
        android:layout_marginLeft="5dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20dp" 
        android:enabled="false" 

       />


</LinearLayout>

単に を削除しweightsumwrap_content幅を指定します。

于 2012-06-13T14:32:48.200 に答える
0

Linear Layoutを使用して、最初の質問の答えを見つけました。それが役立つと思います。コードは次のとおりです。

    <?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="wrap_content"
        android:orientation="horizontal" >
    <TextView
        android:id="@+id/lblCheckBy"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        android:layout_weight="0.25"
        android:gravity="right"
        android:text="Check by" />

    <Spinner
        android:id="@+id/spnCheckBy"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        android:layout_weight="0.25" />

    <TextView
        android:id="@+id/lblOutcome"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        android:layout_weight="0.25"
        android:gravity="right"
        android:text="Outcome" />

    <Spinner
        android:id="@+id/Outcome"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        android:layout_weight="0.25" />

</LinearLayout>

2 番目の回答では、これが正しい解決策につながるリンクです。リンクは次のとおりです。- Imp リンク

于 2012-11-28T16:15:26.560 に答える