If you think the Android project LitePal listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*
* Copyright (C) Tony Green, Litepal Framework Open Source Project
*//www.java2s.com
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/package org.litepal.litepalsample.activity;
import org.litepal.crud.DataSupport;
import org.litepal.litepalsample.R;
import org.litepal.litepalsample.model.Singer;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
publicclass MaxSampleActivity extends Activity implements OnClickListener {
private Button mMaxBtn1;
private Button mMaxBtn2;
private EditText mAgeEdit;
private TextView mResultText;
publicstaticvoid actionStart(Context context) {
Intent intent = new Intent(context, MaxSampleActivity.class);
context.startActivity(intent);
}
@Override
protectedvoid onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.max_sample_layout);
mMaxBtn1 = (Button) findViewById(R.id.max_btn1);
mMaxBtn2 = (Button) findViewById(R.id.max_btn2);
mAgeEdit = (EditText) findViewById(R.id.age_edit);
mResultText = (TextView) findViewById(R.id.result_text);
mMaxBtn1.setOnClickListener(this);
mMaxBtn2.setOnClickListener(this);
}
@Override
publicvoid onClick(View view) {
int result = 0;
switch (view.getId()) {
case R.id.max_btn1:
result = DataSupport.max(Singer.class, "age", Integer.TYPE);
mResultText.setText(String.valueOf(result));
break;
case R.id.max_btn2:
try {
result = DataSupport.where("age < ?", mAgeEdit.getText().toString()).max(
Singer.class, "age", Integer.TYPE);
mResultText.setText(String.valueOf(result));
} catch (Exception e) {
e.printStackTrace();
}
break;
default:
}
}
}