0

[OK] ボタンと [キャンセル] ボタンを使用して日選択ユーザー インターフェイスを作成しようとしています。これは基本的に、アラーム機能で日を選択するのと同じことですが、理解できるように理解できる良い例が見つからないようです。誰か良い例を知っていますか?ありがとう。

4

1 に答える 1

0

基本的に、アクティビティの下部にチェックボックスと 2 つのボタンがある線形レイアウトが必要です。レイアウトは次のようになります。

<LinearLayout
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:orientation="vertical">
    <CheckBox
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:text="Sunday"/> 
    <CheckBox
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:text="Monday"/>
   <CheckBox
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:text="Tuesday"/>
    <CheckBox
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:text="Wednesday"/>
    <CheckBox
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:text="Thursday"/>
    <CheckBox
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:text="Friday"/>
    <CheckBox
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:text="Saturday"/>
</LinearLayout>

  <LinearLayout
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:orientation="horizontal">
    <Button
      android:layout_with="wrap_content"
      android:layout_height="wrap_content"
      android:text="OK"/>
    <Button
      android:layout_with="wrap_content"
      android:layout_height="wrap_content"
      android:text="Cancel"/>
  </LinearLayout>
于 2012-07-01T05:02:55.010 に答える