背景、テキストの色、日付ピッカーダイアログの書体を変更したいのですが、それに合わせて、プラスボタンとマイナスボタンもカスタマイズしたい..どうすれば可能ですか?
			
			14070 次
		
3 に答える
            2        
        
		
ダイアログから日付を選択し、TextView に表示します。
public class DatePickerDemoActivity extends Activity {
/** Called when the activity is first created. */
   private TextView mDateDisplay;
    private Button mPickDate;
    private int mYear;
    private int mMonth;
    private int mDay;
    static final int DATE_DIALOG_ID = 0;
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    // capture our View elements
    mDateDisplay = (TextView) findViewById(R.id.dateDisplay);
    mPickDate = (Button) findViewById(R.id.pickDate);
    // add a click listener to the button
    mPickDate.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            showDialog(DATE_DIALOG_ID);
        }
    });
    // get the current date
    final Calendar c = Calendar.getInstance();
    mYear = c.get(Calendar.YEAR);
    mMonth = c.get(Calendar.MONTH);
    mDay = c.get(Calendar.DAY_OF_MONTH);
    // display the current date (this method is below)
    updateDisplay();
}
// updates the date in the TextView
private void updateDisplay() {
    mDateDisplay.setText(getString(R.string.strSelectedDate,
        new StringBuilder()
                // Month is 0 based so add 1
                .append(mMonth + 1).append("-")
                .append(mDay).append("-")
                .append(mYear).append(" ")));
}
// the callback received when the user "sets" the date in the dialog
private DatePickerDialog.OnDateSetListener mDateSetListener =
        new DatePickerDialog.OnDateSetListener() {
            public void onDateSet(DatePicker view, int year,
                                  int monthOfYear, int dayOfMonth) {
                mYear = year;
                mMonth = monthOfYear;
                mDay = dayOfMonth;
                updateDisplay();
            }
        };
@Override
protected Dialog onCreateDialog(int id) {
    switch (id) {
    case DATE_DIALOG_ID:
        return new DatePickerDialog(this, mDateSetListener, mYear, mMonth,
                mDay);
    }
    return null;
}
}
于 2013-01-12T10:39:23.233   に答える
    
    
            2        
        
		
ビルド済みのウィジェットやレイアウトがニーズに合わない場合は、独自の View サブクラスを作成できます。既存のウィジェットまたはレイアウトを少し調整するだけでよい場合は、ウィジェットまたはレイアウトをサブクラス化し、そのメソッドをオーバーライドするだけです。
独自の View サブクラスを作成すると、画面要素の外観と機能を正確に制御できます。
出典:ドキュメンテーション
ただし、既存のものを簡単に拡張して独自の.
また、UI を改善したい場合は、DateSliderを参照してください。
于 2013-01-12T10:20:04.390   に答える