Как сохранить вид текста в Android? - PullRequest
0 голосов
/ 03 мая 2018

Помогите мне найти решение. Ниже мой код, который выполняет сканирование и отображает текстовое представление. Теперь я хочу сохранить это текстовое представление в любом формате.

Ниже мой код.

public class MainActivity extends AppCompatActivity {
TextView tv;
Button bt;
String contents="", format="";
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    tv = (TextView)findViewById(R.id.contents);
    bt = (Button)findViewById(R.id.save);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent in) {
    IntentResult scanningResult = IntentIntegrator.parseActivityResult(requestCode, resultCode, in);
    if (scanningResult != null) {
        try {
            contents = in.getStringExtra("SCAN_RESULT");
            format = in.getStringExtra("SCAN_RESULT_FORMAT");
            tv.setText("Content-" + contents + "\n" + " Format-" + format);
        }
        catch (NullPointerException e){}
    }
}

public void save(View v){
    if(contents.equals("")){
        Toast.makeText(getApplication(),"Click Camera icon to Scan BarCode",Toast.LENGTH_LONG).show();
    }
    else{
        //search scan result on web
        startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(contents)));
    }
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);//Menu Resource, Menu
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
        case R.id.action_camera:
            IntentIntegrator scanIntegrator = new IntentIntegrator(MainActivity.this);
            scanIntegrator.initiateScan();
            return true;
        default:
            return super.onOptionsItemSelected(item);
    }
}
}

Как мне этого добиться, используя общие настройки?

1 Ответ

0 голосов
/ 03 мая 2018

Чтобы сохранить значение в SharedPrefence, вы делаете что-то вроде этого:

private static final String PREF_KEY_SOMETHING = "PREF_KEY_SOMETHING";

SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
sharedPreferences.edit().putString(PREF_KEY_SOMETHING, yourValue).apply();

Чтобы восстановить его снова, выполните следующие действия.

    String yourValueBack = sharedPreferences.getString(PREF_KEY_SOMETHING ,null);
...