Set relevant titles on pages
This commit is contained in:
1
TODO
1
TODO
@@ -2,7 +2,6 @@
|
||||
-- Select identities in list, or menu option of each?
|
||||
- Deleting contacts
|
||||
- Fix B64 encoding of Bitmaps
|
||||
- Set relevant titles on pages
|
||||
- "Empty trash" option in Trash folder
|
||||
- Figure out how to highlight email backgrounds when selected in list
|
||||
- Highlight address book nav drawer link when touched
|
||||
|
||||
@@ -35,6 +35,7 @@
|
||||
<string name="email_sent">Sent:</string>
|
||||
<string name="email_received">Received:</string>
|
||||
|
||||
<string name="compose">Compose</string>
|
||||
<string name="to">To: </string>
|
||||
<string name="subject">Subject</string>
|
||||
<string name="compose_email">Compose email</string>
|
||||
|
||||
@@ -9,6 +9,7 @@ public class NewEmailActivity extends ActionBarActivity implements
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setTitle(R.string.compose);
|
||||
|
||||
// Enable ActionBar app icon to behave as action to go back
|
||||
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package i2p.bote.android.addressbook;
|
||||
|
||||
import i2p.bote.android.R;
|
||||
import i2p.bote.packet.dht.Contact;
|
||||
import android.app.Activity;
|
||||
import android.content.Intent;
|
||||
@@ -11,6 +12,7 @@ public class AddressBookActivity extends ActionBarActivity implements
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setTitle(R.string.address_book);
|
||||
|
||||
// Enable ActionBar app icon to behave as action to go back
|
||||
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
||||
|
||||
@@ -10,6 +10,7 @@ public class SetPasswordActivity extends ActionBarActivity implements
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setTitle(R.string.pref_title_change_password);
|
||||
setContentView(R.layout.activity_set_password);
|
||||
|
||||
// Enable ActionBar app icon to behave as action to go back
|
||||
|
||||
Reference in New Issue
Block a user