mirror of
https://github.com/gsantner/dandelion
synced 2024-11-22 12:22:08 +01:00
toolbar/actions/menu changes, replaced fab
This commit is contained in:
parent
234335e696
commit
f7ce310703
8 changed files with 177 additions and 179 deletions
|
@ -20,8 +20,8 @@
|
||||||
package com.github.dfa.diaspora_android.activity;
|
package com.github.dfa.diaspora_android.activity;
|
||||||
|
|
||||||
import android.Manifest;
|
import android.Manifest;
|
||||||
|
import android.animation.ObjectAnimator;
|
||||||
import android.annotation.SuppressLint;
|
import android.annotation.SuppressLint;
|
||||||
import android.annotation.TargetApi;
|
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.app.AlertDialog;
|
import android.app.AlertDialog;
|
||||||
import android.content.BroadcastReceiver;
|
import android.content.BroadcastReceiver;
|
||||||
|
@ -46,6 +46,7 @@ import android.support.v4.widget.DrawerLayout;
|
||||||
import android.support.v4.widget.SwipeRefreshLayout;
|
import android.support.v4.widget.SwipeRefreshLayout;
|
||||||
import android.support.v7.app.ActionBarDrawerToggle;
|
import android.support.v7.app.ActionBarDrawerToggle;
|
||||||
import android.support.v7.app.AppCompatActivity;
|
import android.support.v7.app.AppCompatActivity;
|
||||||
|
import android.support.v7.widget.ActionMenuView;
|
||||||
import android.support.v7.widget.Toolbar;
|
import android.support.v7.widget.Toolbar;
|
||||||
import android.text.Html;
|
import android.text.Html;
|
||||||
import android.text.SpannableString;
|
import android.text.SpannableString;
|
||||||
|
@ -68,12 +69,10 @@ import android.widget.RadioGroup;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
import android.widget.Toast;
|
import android.widget.Toast;
|
||||||
|
|
||||||
import com.getbase.floatingactionbutton.FloatingActionsMenu;
|
|
||||||
import com.github.dfa.diaspora_android.App;
|
import com.github.dfa.diaspora_android.App;
|
||||||
import com.github.dfa.diaspora_android.R;
|
import com.github.dfa.diaspora_android.R;
|
||||||
import com.github.dfa.diaspora_android.data.AppSettings;
|
import com.github.dfa.diaspora_android.data.AppSettings;
|
||||||
import com.github.dfa.diaspora_android.data.PodUserProfile;
|
import com.github.dfa.diaspora_android.data.PodUserProfile;
|
||||||
import com.github.dfa.diaspora_android.listener.SoftKeyboardStateWatcher;
|
|
||||||
import com.github.dfa.diaspora_android.listener.WebUserProfileChangedListener;
|
import com.github.dfa.diaspora_android.listener.WebUserProfileChangedListener;
|
||||||
import com.github.dfa.diaspora_android.ui.ContextMenuWebView;
|
import com.github.dfa.diaspora_android.ui.ContextMenuWebView;
|
||||||
import com.github.dfa.diaspora_android.ui.CustomWebViewClient;
|
import com.github.dfa.diaspora_android.ui.CustomWebViewClient;
|
||||||
|
@ -92,6 +91,7 @@ import java.util.Locale;
|
||||||
|
|
||||||
import butterknife.BindView;
|
import butterknife.BindView;
|
||||||
import butterknife.ButterKnife;
|
import butterknife.ButterKnife;
|
||||||
|
import butterknife.OnClick;
|
||||||
|
|
||||||
public class MainActivity extends AppCompatActivity
|
public class MainActivity extends AppCompatActivity
|
||||||
implements NavigationView.OnNavigationItemSelectedListener, WebUserProfileChangedListener {
|
implements NavigationView.OnNavigationItemSelectedListener, WebUserProfileChangedListener {
|
||||||
|
@ -115,6 +115,9 @@ public class MainActivity extends AppCompatActivity
|
||||||
private final Handler uiHandler = new Handler();
|
private final Handler uiHandler = new Handler();
|
||||||
private CustomWebViewClient webViewClient;
|
private CustomWebViewClient webViewClient;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* UI Bindings
|
||||||
|
*/
|
||||||
@BindView(R.id.swipe)
|
@BindView(R.id.swipe)
|
||||||
SwipeRefreshLayout swipeRefreshLayout;
|
SwipeRefreshLayout swipeRefreshLayout;
|
||||||
|
|
||||||
|
@ -122,13 +125,19 @@ public class MainActivity extends AppCompatActivity
|
||||||
ProgressBar progressBar;
|
ProgressBar progressBar;
|
||||||
|
|
||||||
@BindView(R.id.toolbar)
|
@BindView(R.id.toolbar)
|
||||||
Toolbar toolbar;
|
Toolbar toolbarTop;
|
||||||
|
|
||||||
|
@BindView(R.id.toolbar2)
|
||||||
|
ActionMenuView toolbarBottom;
|
||||||
|
|
||||||
@BindView(R.id.webView)
|
@BindView(R.id.webView)
|
||||||
ContextMenuWebView webView;
|
ContextMenuWebView webView;
|
||||||
|
|
||||||
@BindView(R.id.fab_menubutton)
|
@BindView(R.id.main__navigaion_view)
|
||||||
FloatingActionsMenu fab;
|
NavigationView navigationView;
|
||||||
|
|
||||||
|
@BindView(R.id.drawer_layout)
|
||||||
|
DrawerLayout drawer;
|
||||||
|
|
||||||
// NavHeader cannot be bound by Butterknife
|
// NavHeader cannot be bound by Butterknife
|
||||||
private TextView navheaderTitle;
|
private TextView navheaderTitle;
|
||||||
|
@ -136,6 +145,10 @@ public class MainActivity extends AppCompatActivity
|
||||||
private ImageView navheaderImage;
|
private ImageView navheaderImage;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* END UI Bindings
|
||||||
|
*/
|
||||||
|
|
||||||
@SuppressLint("SetJavaScriptEnabled")
|
@SuppressLint("SetJavaScriptEnabled")
|
||||||
@Override
|
@Override
|
||||||
protected void onCreate(Bundle savedInstanceState) {
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
@ -156,33 +169,11 @@ public class MainActivity extends AppCompatActivity
|
||||||
webView.setParentActivity(this);
|
webView.setParentActivity(this);
|
||||||
|
|
||||||
// Setup toolbar
|
// Setup toolbar
|
||||||
setSupportActionBar(toolbar);
|
setSupportActionBar(toolbarTop);
|
||||||
toolbar.setOnClickListener(new View.OnClickListener() {
|
getMenuInflater().inflate(R.menu.main__menu_bottom, toolbarBottom.getMenu());
|
||||||
@Override
|
toolbarBottom.setOnMenuItemClickListener(new ActionMenuView.OnMenuItemClickListener() {
|
||||||
public void onClick(View view) {
|
public boolean onMenuItemClick(MenuItem item) {
|
||||||
if (Helpers.isOnline(MainActivity.this)) {
|
return MainActivity.this.onOptionsItemSelected(item);
|
||||||
webView.loadUrl("https://" + podDomain + "/stream");
|
|
||||||
setTitle(R.string.jb_stream);
|
|
||||||
} else {
|
|
||||||
Snackbar.make(swipeRefreshLayout, R.string.no_internet, Snackbar.LENGTH_LONG).show();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
// Keyboard State Watcher
|
|
||||||
final SoftKeyboardStateWatcher softKeyboardStateWatcher
|
|
||||||
= new SoftKeyboardStateWatcher(findViewById(R.id.swipe));
|
|
||||||
|
|
||||||
softKeyboardStateWatcher.addSoftKeyboardStateListener(new SoftKeyboardStateWatcher.SoftKeyboardStateListener() {
|
|
||||||
@Override
|
|
||||||
public void onSoftKeyboardOpened(int keyboardHeightInPx) {
|
|
||||||
fab.setVisibility(View.GONE);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onSoftKeyboardClosed() {
|
|
||||||
fab.setVisibility(View.VISIBLE);
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -245,11 +236,9 @@ public class MainActivity extends AppCompatActivity
|
||||||
|
|
||||||
if (progress > 60) {
|
if (progress > 60) {
|
||||||
Helpers.hideTopBar(wv);
|
Helpers.hideTopBar(wv);
|
||||||
fab.setVisibility(View.VISIBLE);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (progress == 100) {
|
if (progress == 100) {
|
||||||
fab.collapse();
|
|
||||||
progressBar.setVisibility(View.GONE);
|
progressBar.setVisibility(View.GONE);
|
||||||
} else {
|
} else {
|
||||||
progressBar.setVisibility(View.VISIBLE);
|
progressBar.setVisibility(View.VISIBLE);
|
||||||
|
@ -316,17 +305,15 @@ public class MainActivity extends AppCompatActivity
|
||||||
Snackbar.make(swipeRefreshLayout, R.string.no_internet, Snackbar.LENGTH_LONG).show();
|
Snackbar.make(swipeRefreshLayout, R.string.no_internet, Snackbar.LENGTH_LONG).show();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void setupNavigationSlider() {
|
private void setupNavigationSlider() {
|
||||||
DrawerLayout drawer = ButterKnife.findById(this, R.id.drawer_layout);
|
|
||||||
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
|
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
|
||||||
this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
|
this, drawer, toolbarTop, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
|
||||||
drawer.addDrawerListener(toggle);
|
drawer.addDrawerListener(toggle);
|
||||||
toggle.syncState();
|
toggle.syncState();
|
||||||
|
|
||||||
NavigationView navigationView = ButterKnife.findById(this, R.id.nav_view);
|
//NavigationView navigationView = ButterKnife.findById(this, R.id.nav_view);
|
||||||
navigationView.setNavigationItemSelectedListener(this);
|
navigationView.setNavigationItemSelectedListener(this);
|
||||||
|
|
||||||
View navHeader = navigationView.getHeaderView(0);
|
View navHeader = navigationView.getHeaderView(0);
|
||||||
|
@ -349,66 +336,9 @@ public class MainActivity extends AppCompatActivity
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
@OnClick(R.id.toolbar)
|
||||||
* Fab button events
|
public void onToolBarClicked(View view) {
|
||||||
*/
|
onNavigationItemSelected(navigationView.getMenu().findItem(R.id.nav_stream));
|
||||||
|
|
||||||
public void fab1_click(View v) {
|
|
||||||
fab.collapse();
|
|
||||||
if (Helpers.isOnline(MainActivity.this)) {
|
|
||||||
webView.loadUrl("https://" + podDomain + "/status_messages/new");
|
|
||||||
setTitle(R.string.fab1_title);
|
|
||||||
} else {
|
|
||||||
Snackbar.make(swipeRefreshLayout, R.string.no_internet, Snackbar.LENGTH_LONG).show();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void fab2_click(View v) {
|
|
||||||
fab.collapse();
|
|
||||||
if (Helpers.isOnline(MainActivity.this)) {
|
|
||||||
final EditText input = new EditText(this);
|
|
||||||
final AlertDialog.Builder dialog = new AlertDialog.Builder(this)
|
|
||||||
.setView(input)
|
|
||||||
.setIcon(R.drawable.ic_launcher)
|
|
||||||
.setTitle(R.string.search_alert_title)
|
|
||||||
.setPositiveButton(R.string.search_alert_people, new DialogInterface.OnClickListener() {
|
|
||||||
public void onClick(DialogInterface dialog, int whichButton) {
|
|
||||||
String inputTag = input.getText().toString().trim();
|
|
||||||
String cleanTag = inputTag.replaceAll("\\*", "");
|
|
||||||
// this validate the input data for tagfind
|
|
||||||
if (cleanTag == null || cleanTag.equals("")) {
|
|
||||||
dialog.cancel(); // if user don<EFBFBD>t have added a tag
|
|
||||||
Snackbar.make(swipeRefreshLayout, R.string.search_alert_bypeople_validate_needsomedata, Snackbar.LENGTH_LONG).show();
|
|
||||||
} else { // User have added a search tag
|
|
||||||
webView.loadUrl("https://" + podDomain + "/people.mobile?q=" + cleanTag);
|
|
||||||
setTitle(R.string.fab2_title_person);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.setNegativeButton(R.string.search_alert_tag,
|
|
||||||
new DialogInterface.OnClickListener() {
|
|
||||||
public void onClick(DialogInterface dialog, int whichButton) {
|
|
||||||
String inputTag = input.getText().toString().trim();
|
|
||||||
String cleanTag = inputTag.replaceAll("\\#", "");
|
|
||||||
// this validate the input data for tagfind
|
|
||||||
if (cleanTag == null || cleanTag.equals("")) {
|
|
||||||
dialog.cancel(); // if user hasn't added a tag
|
|
||||||
Snackbar.make(swipeRefreshLayout, R.string.search_alert_bytags_validate_needsomedata, Snackbar.LENGTH_LONG).show();
|
|
||||||
} else { // User have added a search tag
|
|
||||||
webView.loadUrl("https://" + podDomain + "/tags/" + cleanTag);
|
|
||||||
setTitle(R.string.fab2_title_tag);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
dialog.show();
|
|
||||||
} else {
|
|
||||||
Snackbar.make(swipeRefreshLayout, R.string.no_internet, Snackbar.LENGTH_LONG).show();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void fab3_click(View v) {
|
|
||||||
fab.collapse();
|
|
||||||
webView.scrollTo(0, 0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private File createImageFile() throws IOException {
|
private File createImageFile() throws IOException {
|
||||||
|
@ -469,7 +399,11 @@ public class MainActivity extends AppCompatActivity
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onBackPressed() {
|
public void onBackPressed() {
|
||||||
fab.collapse();
|
if (drawer.isDrawerOpen(navigationView)) {
|
||||||
|
drawer.closeDrawer(navigationView);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (webView.canGoBack()) {
|
if (webView.canGoBack()) {
|
||||||
webView.goBack();
|
webView.goBack();
|
||||||
setTitle(R.string.app_name);
|
setTitle(R.string.app_name);
|
||||||
|
@ -504,7 +438,7 @@ public class MainActivity extends AppCompatActivity
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onCreateOptionsMenu(Menu menu) {
|
public boolean onCreateOptionsMenu(Menu menu) {
|
||||||
getMenuInflater().inflate(R.menu.main__menu, menu);
|
getMenuInflater().inflate(R.menu.main__menu_top, menu);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -556,8 +490,26 @@ public class MainActivity extends AppCompatActivity
|
||||||
|
|
||||||
case R.id.action_exit: {
|
case R.id.action_exit: {
|
||||||
moveTaskToBack(true);
|
moveTaskToBack(true);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
case R.id.action_compose: {
|
||||||
|
if (Helpers.isOnline(MainActivity.this)) {
|
||||||
|
webView.loadUrl("https://" + podDomain + "/status_messages/new");
|
||||||
|
setTitle(R.string.compose);
|
||||||
|
} else {
|
||||||
|
Snackbar.make(swipeRefreshLayout, R.string.no_internet, Snackbar.LENGTH_LONG).show();
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
case R.id.action_go_to_top: {
|
||||||
|
// Scroll to top (animated)
|
||||||
|
ObjectAnimator anim = ObjectAnimator.ofInt(webView, "scrollY", webView.getScrollY(), 0);
|
||||||
|
anim.setDuration(400);
|
||||||
|
anim.start();
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
return true;
|
|
||||||
|
|
||||||
case R.id.action_share: {
|
case R.id.action_share: {
|
||||||
final CharSequence[] options = {getString(R.string.share_link), getString(R.string.share_screenshot), getString(R.string.take_screenshot)};
|
final CharSequence[] options = {getString(R.string.share_link), getString(R.string.share_screenshot), getString(R.string.take_screenshot)};
|
||||||
|
@ -730,8 +682,51 @@ public class MainActivity extends AppCompatActivity
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}).show();
|
}).show();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
case R.id.action_search: {
|
||||||
|
if (Helpers.isOnline(MainActivity.this)) {
|
||||||
|
final EditText input = new EditText(this);
|
||||||
|
final AlertDialog.Builder dialog = new AlertDialog.Builder(this)
|
||||||
|
.setView(input)
|
||||||
|
.setIcon(R.drawable.ic_launcher)
|
||||||
|
.setTitle(R.string.search_alert_title)
|
||||||
|
.setPositiveButton(R.string.search_alert_people, new DialogInterface.OnClickListener() {
|
||||||
|
public void onClick(DialogInterface dialog, int whichButton) {
|
||||||
|
String inputTag = input.getText().toString().trim();
|
||||||
|
String cleanTag = inputTag.replaceAll("\\*", "");
|
||||||
|
// this validate the input data for tagfind
|
||||||
|
if (cleanTag == null || cleanTag.equals("")) {
|
||||||
|
dialog.cancel(); // if user don<EFBFBD>t have added a tag
|
||||||
|
Snackbar.make(swipeRefreshLayout, R.string.search_alert_bypeople_validate_needsomedata, Snackbar.LENGTH_LONG).show();
|
||||||
|
} else { // User have added a search tag
|
||||||
|
webView.loadUrl("https://" + podDomain + "/people.mobile?q=" + cleanTag);
|
||||||
|
setTitle(R.string.search_by_person);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.setNegativeButton(R.string.search_alert_tag,
|
||||||
|
new DialogInterface.OnClickListener() {
|
||||||
|
public void onClick(DialogInterface dialog, int whichButton) {
|
||||||
|
String inputTag = input.getText().toString().trim();
|
||||||
|
String cleanTag = inputTag.replaceAll("\\#", "");
|
||||||
|
// this validate the input data for tagfind
|
||||||
|
if (cleanTag == null || cleanTag.equals("")) {
|
||||||
|
dialog.cancel(); // if user hasn't added a tag
|
||||||
|
Snackbar.make(swipeRefreshLayout, R.string.search_alert_bytags_validate_needsomedata, Snackbar.LENGTH_LONG).show();
|
||||||
|
} else { // User have added a search tag
|
||||||
|
webView.loadUrl("https://" + podDomain + "/tags/" + cleanTag);
|
||||||
|
setTitle(R.string.search_by_tag);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
dialog.show();
|
||||||
|
} else {
|
||||||
|
Snackbar.make(swipeRefreshLayout, R.string.no_internet, Snackbar.LENGTH_LONG).show();
|
||||||
|
}
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
return super.onOptionsItemSelected(item);
|
return super.onOptionsItemSelected(item);
|
||||||
}
|
}
|
||||||
|
@ -809,7 +804,7 @@ public class MainActivity extends AppCompatActivity
|
||||||
uiHandler.post(new Runnable() {
|
uiHandler.post(new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
if(menu == null){
|
if (menu == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
notificationCount = Integer.valueOf(webMessage);
|
notificationCount = Integer.valueOf(webMessage);
|
||||||
|
@ -855,7 +850,7 @@ public class MainActivity extends AppCompatActivity
|
||||||
uiHandler.post(new Runnable() {
|
uiHandler.post(new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
if(menu == null){
|
if (menu == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
conversationCount = Integer.valueOf(webMessage);
|
conversationCount = Integer.valueOf(webMessage);
|
||||||
|
@ -1082,7 +1077,7 @@ public class MainActivity extends AppCompatActivity
|
||||||
new AlertDialog.Builder(MainActivity.this)
|
new AlertDialog.Builder(MainActivity.this)
|
||||||
.setTitle(R.string.help_help)
|
.setTitle(R.string.help_help)
|
||||||
.setMessage(Html.fromHtml(getString(R.string.markdown_text)))
|
.setMessage(Html.fromHtml(getString(R.string.markdown_text)))
|
||||||
.setPositiveButton(android.R.string.yes,null).show();
|
.setPositiveButton(android.R.string.yes, null).show();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}).show();
|
}).show();
|
||||||
|
|
|
@ -351,7 +351,6 @@ public class ShareActivity extends MainActivity {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onBackPressed() {
|
public void onBackPressed() {
|
||||||
fab.collapse();
|
|
||||||
if (webView.canGoBack()) {
|
if (webView.canGoBack()) {
|
||||||
webView.goBack();
|
webView.goBack();
|
||||||
setTitle(R.string.app_name);
|
setTitle(R.string.app_name);
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
android:layout_height="match_parent" />
|
android:layout_height="match_parent" />
|
||||||
|
|
||||||
<android.support.design.widget.NavigationView
|
<android.support.design.widget.NavigationView
|
||||||
android:id="@+id/nav_view"
|
android:id="@+id/main__navigaion_view"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_gravity="start"
|
android:layout_gravity="start"
|
||||||
|
|
|
@ -24,56 +24,19 @@
|
||||||
|
|
||||||
<include layout="@layout/main__content" />
|
<include layout="@layout/main__content" />
|
||||||
|
|
||||||
<com.getbase.floatingactionbutton.FloatingActionsMenu
|
<android.support.design.widget.AppBarLayout
|
||||||
android:id="@+id/fab_menubutton"
|
android:layout_width="match_parent"
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_gravity="bottom|end"
|
android:layout_gravity="bottom|end"
|
||||||
android:layout_marginBottom="4dp"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginEnd="8dp"
|
android:theme="@style/AppTheme.AppBarOverlay">
|
||||||
android:layout_marginRight="8dp"
|
|
||||||
android:visibility="gone"
|
|
||||||
app:layout_behavior=".ui.FloatingActionsMenuBehavior"
|
|
||||||
fab:fab_addButtonColorNormal="@color/fab_big"
|
|
||||||
fab:fab_addButtonColorPressed="@color/fab_big_pressed"
|
|
||||||
fab:fab_addButtonPlusIconColor="@color/white"
|
|
||||||
fab:fab_labelStyle="@style/menu_labels_style">
|
|
||||||
|
|
||||||
<com.getbase.floatingactionbutton.FloatingActionButton
|
<android.support.v7.widget.ActionMenuView
|
||||||
android:id="@+id/fab_top"
|
android:id="@+id/toolbar2"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="?attr/actionBarSize"
|
||||||
android:onClick="fab3_click"
|
android:background="?attr/colorPrimary"
|
||||||
fab:fab_colorNormal="@color/fab_small"
|
app:popupTheme="@style/AppTheme.PopupOverlay" />
|
||||||
fab:fab_colorPressed="@color/fab_small_pressed"
|
|
||||||
fab:fab_icon="@drawable/fab_top"
|
|
||||||
fab:fab_labelStyle="@style/menu_labels_style"
|
|
||||||
fab:fab_size="mini"
|
|
||||||
fab:fab_title="@string/fab3_title" />
|
|
||||||
|
|
||||||
<com.getbase.floatingactionbutton.FloatingActionButton
|
</android.support.design.widget.AppBarLayout>
|
||||||
android:id="@+id/fab_search"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:onClick="fab2_click"
|
|
||||||
fab:fab_colorNormal="@color/fab_small"
|
|
||||||
fab:fab_colorPressed="@color/fab_small_pressed"
|
|
||||||
fab:fab_icon="@drawable/fab_search"
|
|
||||||
fab:fab_labelStyle="@style/menu_labels_style"
|
|
||||||
fab:fab_size="mini"
|
|
||||||
fab:fab_title="@string/fab2_title" />
|
|
||||||
|
|
||||||
<com.getbase.floatingactionbutton.FloatingActionButton
|
|
||||||
android:id="@+id/fab_compose"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:onClick="fab1_click"
|
|
||||||
fab:fab_colorNormal="@color/fab_small"
|
|
||||||
fab:fab_colorPressed="@color/fab_small_pressed"
|
|
||||||
fab:fab_icon="@drawable/fab_compose"
|
|
||||||
fab:fab_size="mini"
|
|
||||||
fab:fab_title="@string/fab1_title" />
|
|
||||||
|
|
||||||
</com.getbase.floatingactionbutton.FloatingActionsMenu>
|
|
||||||
|
|
||||||
</android.support.design.widget.CoordinatorLayout>
|
</android.support.design.widget.CoordinatorLayout>
|
53
app/src/main/res/menu/main__menu_bottom.xml
Normal file
53
app/src/main/res/menu/main__menu_bottom.xml
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
tools:context=".activity.MainActivity">
|
||||||
|
|
||||||
|
|
||||||
|
<item
|
||||||
|
android:id="@+id/action_search"
|
||||||
|
android:icon="@drawable/fab_search"
|
||||||
|
app:showAsAction="always"
|
||||||
|
android:title="@string/search_by_tags_or_persons" />
|
||||||
|
|
||||||
|
|
||||||
|
<item
|
||||||
|
android:id="@+id/action_compose"
|
||||||
|
android:icon="@drawable/fab_compose"
|
||||||
|
app:showAsAction="always"
|
||||||
|
android:title="@string/compose" />
|
||||||
|
|
||||||
|
<item
|
||||||
|
android:id="@+id/action_share"
|
||||||
|
android:icon="@drawable/ic_share_white_24dp"
|
||||||
|
android:title="@string/jb_share"
|
||||||
|
app:showAsAction="always" />
|
||||||
|
|
||||||
|
<!--
|
||||||
|
<item
|
||||||
|
android:id="@+id/action_share2"
|
||||||
|
android:icon="@drawable/ic_share_white_24dp"
|
||||||
|
android:title="@string/jb_share"
|
||||||
|
app:showAsAction="always" >
|
||||||
|
<menu>
|
||||||
|
<item android:id="@+id/item1" android:title="@string/search_alert_people"></item>
|
||||||
|
<item android:id="@+id/item2" android:title="@string/search_alert_tag"></item>
|
||||||
|
</menu>
|
||||||
|
</item> -->
|
||||||
|
|
||||||
|
<!-- Keep right most -->
|
||||||
|
<item
|
||||||
|
android:id="@+id/action_go_to_top"
|
||||||
|
android:icon="@drawable/fab_top"
|
||||||
|
android:title="@string/go_to_top"
|
||||||
|
app:showAsAction="always"/>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- overflow menu -->
|
||||||
|
<item
|
||||||
|
android:id="@+id/action_exit"
|
||||||
|
android:icon="@drawable/ic_sync_white_24dp"
|
||||||
|
android:title="@string/exit_app"
|
||||||
|
app:showAsAction="never" />
|
||||||
|
|
||||||
|
</menu>
|
|
@ -1,7 +1,7 @@
|
||||||
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
tools:context="com.github.dfa.diaspora_android.activity.MainActivity">
|
tools:context=".activity.MainActivity">
|
||||||
|
|
||||||
<item
|
<item
|
||||||
android:id="@+id/action_notifications"
|
android:id="@+id/action_notifications"
|
||||||
|
@ -15,16 +15,4 @@
|
||||||
android:title="@string/messages"
|
android:title="@string/messages"
|
||||||
app:showAsAction="always" />
|
app:showAsAction="always" />
|
||||||
|
|
||||||
<item
|
|
||||||
android:id="@+id/action_share"
|
|
||||||
android:icon="@drawable/ic_share_white_24dp"
|
|
||||||
android:title="@string/jb_share"
|
|
||||||
app:showAsAction="ifRoom" />
|
|
||||||
|
|
||||||
<item
|
|
||||||
android:id="@+id/action_exit"
|
|
||||||
android:icon="@drawable/ic_sync_white_24dp"
|
|
||||||
android:title="@string/exit_app"
|
|
||||||
app:showAsAction="never" />
|
|
||||||
|
|
||||||
</menu>
|
</menu>
|
|
@ -48,9 +48,9 @@
|
||||||
|
|
||||||
// Floating Action Buttons - Titles
|
// Floating Action Buttons - Titles
|
||||||
|
|
||||||
<string name="fab3_title">Nach oben scrollen</string>
|
<string name="go_to_top">Nach oben scrollen</string>
|
||||||
<string name="fab2_title">Suche nach Tags oder Personen …</string>
|
<string name="search_by_tags_or_persons">Suche nach Tags oder Personen …</string>
|
||||||
<string name="fab1_title">Neuer Beitrag</string>
|
<string name="compose">Neuer Beitrag</string>
|
||||||
|
|
||||||
<string name="search_alert_title">Suche</string>
|
<string name="search_alert_title">Suche</string>
|
||||||
<string name="search_alert_tag">nach Tags</string>
|
<string name="search_alert_tag">nach Tags</string>
|
||||||
|
@ -147,8 +147,8 @@ along with this program. If not, see http://www.gnu.org/licenses.<br> <br
|
||||||
<i>Die Bilder des Startbildschirms können auf Flickr gefunden werden:
|
<i>Die Bilder des Startbildschirms können auf Flickr gefunden werden:
|
||||||
https://www.flickr.com/photos/129581906@N06/sets/72157651933980136/with/16594947123.
|
https://www.flickr.com/photos/129581906@N06/sets/72157651933980136/with/16594947123.
|
||||||
Sie wurden von \"Lydia\" veröffentlicht und stehen unter der cc by-nc-sa Lizenz.</i></string>
|
Sie wurden von \"Lydia\" veröffentlicht und stehen unter der cc by-nc-sa Lizenz.</i></string>
|
||||||
<string name="fab2_title_person">Suche nach Personen …</string>
|
<string name="search_by_person">Suche nach Personen …</string>
|
||||||
<string name="fab2_title_tag">Suche nach Tags …</string>
|
<string name="search_by_tag">Suche nach Tags …</string>
|
||||||
<string name="splash_screen_description">Startbildschirm</string>
|
<string name="splash_screen_description">Startbildschirm</string>
|
||||||
<string name="new_conversations">Ungelesene Unterhaltung. Öffnen?</string>
|
<string name="new_conversations">Ungelesene Unterhaltung. Öffnen?</string>
|
||||||
<string name="new_notifications">Ungelesene Benachrichtigung. Lesen?</string>
|
<string name="new_notifications">Ungelesene Benachrichtigung. Lesen?</string>
|
||||||
|
|
|
@ -81,11 +81,11 @@
|
||||||
|
|
||||||
// Floating Action Buttons - Titles
|
// Floating Action Buttons - Titles
|
||||||
|
|
||||||
<string name="fab3_title">Go to top</string>
|
<string name="go_to_top">Go to top</string>
|
||||||
<string name="fab2_title">Search by tags or persons</string>
|
<string name="search_by_tags_or_persons">Search by tags or persons</string>
|
||||||
<string name="fab2_title_tag">Search for tag …</string>
|
<string name="search_by_tag">Search for tag …</string>
|
||||||
<string name="fab2_title_person">Search for person …</string>
|
<string name="search_by_person">Search for person …</string>
|
||||||
<string name="fab1_title">New message</string>
|
<string name="compose">New message</string>
|
||||||
|
|
||||||
|
|
||||||
<string name="search_alert_title">Search</string>
|
<string name="search_alert_title">Search</string>
|
||||||
|
|
Loading…
Reference in a new issue