load settings
This commit is contained in:
parent
0f1aafefe7
commit
1c6d43112d
1 changed files with 14 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
package asgardius.page.s3manager;
|
package asgardius.page.s3manager;
|
||||||
|
|
||||||
|
import android.annotation.SuppressLint;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.database.Cursor;
|
import android.database.Cursor;
|
||||||
import android.database.sqlite.SQLiteDatabase;
|
import android.database.sqlite.SQLiteDatabase;
|
||||||
|
@ -9,6 +10,7 @@ import androidx.appcompat.app.AppCompatActivity;
|
||||||
|
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.widget.Button;
|
import android.widget.Button;
|
||||||
|
import android.widget.EditText;
|
||||||
import android.widget.Toast;
|
import android.widget.Toast;
|
||||||
|
|
||||||
import asgardius.page.s3manager.databinding.ActivitySettingsBinding;
|
import asgardius.page.s3manager.databinding.ActivitySettingsBinding;
|
||||||
|
@ -19,6 +21,7 @@ public class Settings extends AppCompatActivity {
|
||||||
MyDbHelper dbHelper;
|
MyDbHelper dbHelper;
|
||||||
SQLiteDatabase db;
|
SQLiteDatabase db;
|
||||||
int videocache, videotime;
|
int videocache, videotime;
|
||||||
|
EditText vcachepick, vtimepick;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onCreate(Bundle savedInstanceState) {
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
@ -26,6 +29,8 @@ public class Settings extends AppCompatActivity {
|
||||||
|
|
||||||
binding = ActivitySettingsBinding.inflate(getLayoutInflater());
|
binding = ActivitySettingsBinding.inflate(getLayoutInflater());
|
||||||
setContentView(binding.getRoot());
|
setContentView(binding.getRoot());
|
||||||
|
vcachepick = (EditText)findViewById(R.id.videocache);
|
||||||
|
vtimepick = (EditText)findViewById(R.id.videotime);
|
||||||
dbHelper = new MyDbHelper(this);
|
dbHelper = new MyDbHelper(this);
|
||||||
Thread getprefs = new Thread(new Runnable() {
|
Thread getprefs = new Thread(new Runnable() {
|
||||||
|
|
||||||
|
@ -46,6 +51,15 @@ public class Settings extends AppCompatActivity {
|
||||||
videotime = (Integer.parseInt(cursor.getString(0)));
|
videotime = (Integer.parseInt(cursor.getString(0)));
|
||||||
}
|
}
|
||||||
db.close();
|
db.close();
|
||||||
|
runOnUiThread(new Runnable() {
|
||||||
|
|
||||||
|
@SuppressLint("SetTextI18n")
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
vcachepick.setText(Integer.toString(videocache));
|
||||||
|
vtimepick.setText(Integer.toString(videotime));
|
||||||
|
}
|
||||||
|
});
|
||||||
System.out.println("videocache " + videocache);
|
System.out.println("videocache " + videocache);
|
||||||
System.out.println("videotime " + videotime);
|
System.out.println("videotime " + videotime);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
|
Loading…
Reference in a new issue