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 MinSampleActivity extends Activity implements OnClickListener {
private Button mMinBtn1;
private Button mMinBtn2;
private EditText mAgeEdit;
private TextView mResultText;
publicstaticvoid actionStart(Context context) {
Intent intent = new Intent(context, MinSampleActivity.class);
context.startActivity(intent);
}
@Override
protectedvoid onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.min_sample_layout);
mMinBtn1 = (Button) findViewById(R.id.min_btn1);
mMinBtn2 = (Button) findViewById(R.id.min_btn2);
mAgeEdit = (EditText) findViewById(R.id.age_edit);
mResultText = (TextView) findViewById(R.id.result_text);
mMinBtn1.setOnClickListener(this);
mMinBtn2.setOnClickListener(this);
}
@Override
publicvoid onClick(View view) {
int result = 0;
switch (view.getId()) {
case R.id.min_btn1:
result = DataSupport.min(Singer.class, "age", Integer.TYPE);
mResultText.setText(String.valueOf(result));
break;
case R.id.min_btn2:
try {
result = DataSupport.where("age > ?", mAgeEdit.getText().toString()).min(
Singer.class, "age", Integer.TYPE);
mResultText.setText(String.valueOf(result));
} catch (Exception e) {
e.printStackTrace();
}
break;
default:
}
}
}