0

両側に 2 つの矢印がある Android で一度に 1 つのテキスト値を選択できるコントロールを探しています。コントロールの名前はわかりませんが、画像の例を次に示します。

ここに画像の説明を入力

4

3 に答える 3

2

日付の場合は、次のようなDatePickerを使用することをお勧めします。そうでなければ、それが時間のためなら、おそらくあなたはこのようなものが欲しいかもしれません。

ただし、NumberPickerのようなものを探している場合は、API11以降でのみ利用できるようです。したがって、必要に応じて、独自にカスタマイズする必要がある場合があります。

于 2012-06-11T04:12:59.993 に答える
1

ねえ、このホイール コントロールを見てみましょう.. サード パーティの人によって作成されたカスタム コントロール。彼はまた、彼のブログで他の詳細を提供しました..必要に応じて変更できます..

于 2012-06-11T05:16:22.933 に答える
0

自分で作成しました。これは私にとって非常に効果的です。ゲラコントロールは大いに役立ちました。ただし、問題がある場合は遠慮なく指摘してください。

import android.content.Context;
import android.graphics.Color;
import android.util.AttributeSet;
import android.view.Gravity;
import android.view.View;
import android.view.ViewGroup;
import android.widget.*;
import nz.co.nuffie.android.crichq.R;

import java.util.ArrayList;
import java.util.List;

public class ScrollWheelControl extends LinearLayout{
    private final ArrayList<String> textList = new ArrayList<String>();
    private ArrayAdapter optionAdapter = null;
    private AdapterView.OnItemSelectedListener itemSelectedListener = null;

    public ScrollWheelControl(Context context){
        super(context);
    }

    public ScrollWheelControl(Context context, AttributeSet attrs){
        super(context, attrs);
        initView(context);
    }

    public ScrollWheelControl(Context context, AttributeSet attrs, int defStyle){
        super(context, attrs, defStyle);
        initView(context);
    }

    public void initView(Context context) {
        View.inflate(context, R.layout.scroll_wheel_control, this);

        optionAdapter = new ArrayAdapter<String>(context, android.R.layout.simple_gallery_item, textList )
        {
            @Override
            public View getView(int position, View convertView, ViewGroup parent) {
                View v = super.getView(position,convertView,parent);
                if(v instanceof TextView){//Just in case.
                    TextView txt = (TextView)v;
                    Gallery.LayoutParams glp = new Gallery.LayoutParams(Gallery.LayoutParams.FILL_PARENT, Gallery.LayoutParams.FILL_PARENT);
                    txt.setGravity(Gravity.CENTER);
                    txt.setLayoutParams(glp);
                }
                return v;
            }
        };


        optionAdapter.notifyDataSetChanged();

        final Gallery g = (Gallery) findViewById(R.id.gOptionSelect);
        g.setAdapter(optionAdapter);

        final Button btnLeft = (Button) findViewById(R.id.btnLeft);
        final Button btnRight = (Button) findViewById(R.id.btnRight);
        g.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
            @Override
            public void onItemSelected(AdapterView<?> list, View view, int position, long id) {
                if(position >= textList.size()-1){
                    btnRight.setTextColor(Color.GRAY);
                }else
                    btnRight.setTextColor(Color.WHITE);

                if(position == 0){
                    btnLeft.setTextColor(Color.GRAY);
                }else
                    btnLeft.setTextColor(Color.WHITE);

                if(itemSelectedListener != null){
                    itemSelectedListener.onItemSelected(list,view,position,id);
                }
            }

            @Override
            public void onNothingSelected(AdapterView<?> parent) {
            }
        });
        btnLeft.setOnClickListener(new OnClickListener(){
            @Override
            public void onClick(View view){
                g.onFling(null, null, 2000, 0);
            }
        });
        btnRight.setOnClickListener(new OnClickListener(){
            @Override
            public void onClick(View view){
                g.onFling(null, null, -2000, 0);
            }
        });
    }

    public void setOnItemListener(AdapterView.OnItemSelectedListener setItemSelectedListener){
        itemSelectedListener = setItemSelectedListener;
    }

    public void addTextItems(List<String> list){
        textList.addAll(list);
        if(optionAdapter != null){
            optionAdapter.notifyDataSetChanged();
        }
    }
}

XML コード:

<?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="match_parent"
    android:orientation="horizontal"
    android:padding="5dp">

    <Button
        android:id="@+id/btnLeft"
        style="?android:attr/buttonStyleSmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="\u003C"
        android:background="@android:color/transparent"
        android:textColor="@android:color/white"
        android:shadowColor="@android:color/black"
        android:shadowDx="1"
        android:shadowDy="1"
        android:shadowRadius="2"
        android:textStyle="bold"
        android:minWidth="15dp"
            />

    <Gallery
        android:layout_marginLeft="5dp"
        android:layout_marginRight="5dp"
        android:id="@+id/gOptionSelect"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="center_vertical"
        android:spacing="0dp">
    </Gallery>

    <Button
        android:id="@+id/btnRight"
        style="?android:attr/buttonStyleSmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@android:color/transparent"
        android:text="\u003E" 
        android:textColor="@android:color/white"
        android:shadowColor="@android:color/black"
        android:shadowDx="1"
        android:shadowDy="1"
        android:shadowRadius="2"
        android:textStyle="bold"
        android:minWidth="15dp"
            />

</LinearLayout>
于 2012-06-20T21:50:04.350 に答える