Share action for own toots
This commit is contained in:
parent
5ae58ecac1
commit
47ebcb29bf
2 changed files with 3 additions and 6 deletions
|
@ -56,11 +56,6 @@ public class LoginActivity extends AppCompatActivity {
|
||||||
@BindView(R.id.button_login) Button button;
|
@BindView(R.id.button_login) Button button;
|
||||||
@BindView(R.id.no_account) TextView noAccount;
|
@BindView(R.id.no_account) TextView noAccount;
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void createMastodonAPI() {
|
|
||||||
// Don't do this in this activity, since we don't know a domain yet
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Chain together the key-value pairs into a query string, for either appending to a URL or
|
* Chain together the key-value pairs into a query string, for either appending to a URL or
|
||||||
* as the content of an HTTP request.
|
* as the content of an HTTP request.
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item
|
||||||
|
android:id="@+id/status_share"
|
||||||
|
android:title="@string/action_share"/>
|
||||||
<item android:title="@string/action_delete"
|
<item android:title="@string/action_delete"
|
||||||
android:id="@+id/status_delete" />
|
android:id="@+id/status_delete" />
|
||||||
</menu>
|
</menu>
|
Loading…
Reference in a new issue