Cropped title of item BottomNavigationView
When Using the design library 'com.android.support:design:28.0.0'
BottomNavigationView incorrectly displays item title with long text:
My layout file:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".mvp.ui.activities.MainActivity">
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="0dp"
android:layout_marginBottom="56dp"
android:layout_above="@+id/navigation"
android:id="@+id/fragmentContent" />
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="0dp"
android:layout_marginStart="0dp"
app:labelVisibilityMode="labeled"
app:itemHorizontalTranslationEnabled="false"
android:background="?android:attr/windowBackground"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:menu="@menu/navigation" />
</android.support.constraint.ConstraintLayout>
It looks very strange because the exact same code when using the design library com.android.support:design:27.1.1
generates a great result:
How is this possible? for the new version of the library I tried to use labelVisibilityMode
,but this did not help.
app:showAsAction="always"
does not work either.
Any ideas?
android navigationbar bottomnavigationview android-bottomnav
add a comment |
When Using the design library 'com.android.support:design:28.0.0'
BottomNavigationView incorrectly displays item title with long text:
My layout file:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".mvp.ui.activities.MainActivity">
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="0dp"
android:layout_marginBottom="56dp"
android:layout_above="@+id/navigation"
android:id="@+id/fragmentContent" />
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="0dp"
android:layout_marginStart="0dp"
app:labelVisibilityMode="labeled"
app:itemHorizontalTranslationEnabled="false"
android:background="?android:attr/windowBackground"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:menu="@menu/navigation" />
</android.support.constraint.ConstraintLayout>
It looks very strange because the exact same code when using the design library com.android.support:design:27.1.1
generates a great result:
How is this possible? for the new version of the library I tried to use labelVisibilityMode
,but this did not help.
app:showAsAction="always"
does not work either.
Any ideas?
android navigationbar bottomnavigationview android-bottomnav
add a comment |
When Using the design library 'com.android.support:design:28.0.0'
BottomNavigationView incorrectly displays item title with long text:
My layout file:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".mvp.ui.activities.MainActivity">
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="0dp"
android:layout_marginBottom="56dp"
android:layout_above="@+id/navigation"
android:id="@+id/fragmentContent" />
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="0dp"
android:layout_marginStart="0dp"
app:labelVisibilityMode="labeled"
app:itemHorizontalTranslationEnabled="false"
android:background="?android:attr/windowBackground"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:menu="@menu/navigation" />
</android.support.constraint.ConstraintLayout>
It looks very strange because the exact same code when using the design library com.android.support:design:27.1.1
generates a great result:
How is this possible? for the new version of the library I tried to use labelVisibilityMode
,but this did not help.
app:showAsAction="always"
does not work either.
Any ideas?
android navigationbar bottomnavigationview android-bottomnav
When Using the design library 'com.android.support:design:28.0.0'
BottomNavigationView incorrectly displays item title with long text:
My layout file:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".mvp.ui.activities.MainActivity">
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="0dp"
android:layout_marginBottom="56dp"
android:layout_above="@+id/navigation"
android:id="@+id/fragmentContent" />
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="0dp"
android:layout_marginStart="0dp"
app:labelVisibilityMode="labeled"
app:itemHorizontalTranslationEnabled="false"
android:background="?android:attr/windowBackground"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:menu="@menu/navigation" />
</android.support.constraint.ConstraintLayout>
It looks very strange because the exact same code when using the design library com.android.support:design:27.1.1
generates a great result:
How is this possible? for the new version of the library I tried to use labelVisibilityMode
,but this did not help.
app:showAsAction="always"
does not work either.
Any ideas?
android navigationbar bottomnavigationview android-bottomnav
android navigationbar bottomnavigationview android-bottomnav
asked Nov 21 at 20:47
Sergey K.
367
367
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
This is because of inappropriate padding for the active child view,(maybe an issue) ,you could create a function like this:
public void removePaddingFromNavigationItem() {
BottomNavigationMenuView menuView = (BottomNavigationMenuView) bottomNavigationView.getChildAt(0);
for (int i = 0; i < menuView.getChildCount(); i++) {
BottomNavigationItemView item = (BottomNavigationItemView) menuView.getChildAt(i);
View activeLabel = item.findViewById(R.id.largeLabel);
if (activeLabel instanceof TextView) {
activeLabel.setPadding(0, 0, 0, 0);
}
}
}
and call removePaddingFromNavigationItem
method before the setOnNavigationItemSelectedListener
.
This is a great solution for my 5 inch display! But the problem remains for 4-inch displays.
– Sergey K.
Nov 22 at 6:10
add a comment |
Use this helper , it uses reflection to change BottomNavigationBar's TextView(s) properties!
public class BottomNavigationViewHelper {
public static void refineBottomBar(Context context, BottomNavigationView view) {
BottomNavigationMenuView menuView = (BottomNavigationMenuView) view.getChildAt(0);
try {
for (int i = 0; i < menuView.getChildCount(); i++) {
BottomNavigationItemView item = (BottomNavigationItemView) menuView.getChildAt(i);
Field LargeText = item.getClass().getDeclaredField("mLargeLabel");
LargeText.setAccessible(true);
Field SmallText = item.getClass().getDeclaredField("mSmallLabel");
SmallText.setAccessible(true);
TextView SmallTextView =(TextView) SmallText.get(item);
TextView LargeTextView =(TextView) LargeText.get(item);
SmallTextView.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
LargeTextView.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
SmallTextView.setGravity(Gravity.CENTER_VERTICAL | Gravity.CENTER_HORIZONTAL);
LargeTextView.setGravity(Gravity.CENTER_VERTICAL | Gravity.CENTER_HORIZONTAL);
LargeTextView.setPadding(0, 0, 0, 0);
SmallTextView.setPadding(0, 0, 0, 0);
}
} catch (NoSuchFieldException e) {
Log.e("BNVHelper", "Unable to get shift mode field", e);
} catch (IllegalAccessException e) {
Log.e("BNVHelper", "Unable to change value of shift mode", e);
}
}
}
sorry, it is dont work for me
– Sergey K.
Nov 22 at 8:57
try to set margins to 0 using the layout params and test it
– Koorosh Ghorbani
Nov 22 at 22:22
again a bad result ((
– Sergey K.
Nov 23 at 18:29
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53420239%2fcropped-title-of-item-bottomnavigationview%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
This is because of inappropriate padding for the active child view,(maybe an issue) ,you could create a function like this:
public void removePaddingFromNavigationItem() {
BottomNavigationMenuView menuView = (BottomNavigationMenuView) bottomNavigationView.getChildAt(0);
for (int i = 0; i < menuView.getChildCount(); i++) {
BottomNavigationItemView item = (BottomNavigationItemView) menuView.getChildAt(i);
View activeLabel = item.findViewById(R.id.largeLabel);
if (activeLabel instanceof TextView) {
activeLabel.setPadding(0, 0, 0, 0);
}
}
}
and call removePaddingFromNavigationItem
method before the setOnNavigationItemSelectedListener
.
This is a great solution for my 5 inch display! But the problem remains for 4-inch displays.
– Sergey K.
Nov 22 at 6:10
add a comment |
This is because of inappropriate padding for the active child view,(maybe an issue) ,you could create a function like this:
public void removePaddingFromNavigationItem() {
BottomNavigationMenuView menuView = (BottomNavigationMenuView) bottomNavigationView.getChildAt(0);
for (int i = 0; i < menuView.getChildCount(); i++) {
BottomNavigationItemView item = (BottomNavigationItemView) menuView.getChildAt(i);
View activeLabel = item.findViewById(R.id.largeLabel);
if (activeLabel instanceof TextView) {
activeLabel.setPadding(0, 0, 0, 0);
}
}
}
and call removePaddingFromNavigationItem
method before the setOnNavigationItemSelectedListener
.
This is a great solution for my 5 inch display! But the problem remains for 4-inch displays.
– Sergey K.
Nov 22 at 6:10
add a comment |
This is because of inappropriate padding for the active child view,(maybe an issue) ,you could create a function like this:
public void removePaddingFromNavigationItem() {
BottomNavigationMenuView menuView = (BottomNavigationMenuView) bottomNavigationView.getChildAt(0);
for (int i = 0; i < menuView.getChildCount(); i++) {
BottomNavigationItemView item = (BottomNavigationItemView) menuView.getChildAt(i);
View activeLabel = item.findViewById(R.id.largeLabel);
if (activeLabel instanceof TextView) {
activeLabel.setPadding(0, 0, 0, 0);
}
}
}
and call removePaddingFromNavigationItem
method before the setOnNavigationItemSelectedListener
.
This is because of inappropriate padding for the active child view,(maybe an issue) ,you could create a function like this:
public void removePaddingFromNavigationItem() {
BottomNavigationMenuView menuView = (BottomNavigationMenuView) bottomNavigationView.getChildAt(0);
for (int i = 0; i < menuView.getChildCount(); i++) {
BottomNavigationItemView item = (BottomNavigationItemView) menuView.getChildAt(i);
View activeLabel = item.findViewById(R.id.largeLabel);
if (activeLabel instanceof TextView) {
activeLabel.setPadding(0, 0, 0, 0);
}
}
}
and call removePaddingFromNavigationItem
method before the setOnNavigationItemSelectedListener
.
answered Nov 21 at 21:16
navylover
3,32021118
3,32021118
This is a great solution for my 5 inch display! But the problem remains for 4-inch displays.
– Sergey K.
Nov 22 at 6:10
add a comment |
This is a great solution for my 5 inch display! But the problem remains for 4-inch displays.
– Sergey K.
Nov 22 at 6:10
This is a great solution for my 5 inch display! But the problem remains for 4-inch displays.
– Sergey K.
Nov 22 at 6:10
This is a great solution for my 5 inch display! But the problem remains for 4-inch displays.
– Sergey K.
Nov 22 at 6:10
add a comment |
Use this helper , it uses reflection to change BottomNavigationBar's TextView(s) properties!
public class BottomNavigationViewHelper {
public static void refineBottomBar(Context context, BottomNavigationView view) {
BottomNavigationMenuView menuView = (BottomNavigationMenuView) view.getChildAt(0);
try {
for (int i = 0; i < menuView.getChildCount(); i++) {
BottomNavigationItemView item = (BottomNavigationItemView) menuView.getChildAt(i);
Field LargeText = item.getClass().getDeclaredField("mLargeLabel");
LargeText.setAccessible(true);
Field SmallText = item.getClass().getDeclaredField("mSmallLabel");
SmallText.setAccessible(true);
TextView SmallTextView =(TextView) SmallText.get(item);
TextView LargeTextView =(TextView) LargeText.get(item);
SmallTextView.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
LargeTextView.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
SmallTextView.setGravity(Gravity.CENTER_VERTICAL | Gravity.CENTER_HORIZONTAL);
LargeTextView.setGravity(Gravity.CENTER_VERTICAL | Gravity.CENTER_HORIZONTAL);
LargeTextView.setPadding(0, 0, 0, 0);
SmallTextView.setPadding(0, 0, 0, 0);
}
} catch (NoSuchFieldException e) {
Log.e("BNVHelper", "Unable to get shift mode field", e);
} catch (IllegalAccessException e) {
Log.e("BNVHelper", "Unable to change value of shift mode", e);
}
}
}
sorry, it is dont work for me
– Sergey K.
Nov 22 at 8:57
try to set margins to 0 using the layout params and test it
– Koorosh Ghorbani
Nov 22 at 22:22
again a bad result ((
– Sergey K.
Nov 23 at 18:29
add a comment |
Use this helper , it uses reflection to change BottomNavigationBar's TextView(s) properties!
public class BottomNavigationViewHelper {
public static void refineBottomBar(Context context, BottomNavigationView view) {
BottomNavigationMenuView menuView = (BottomNavigationMenuView) view.getChildAt(0);
try {
for (int i = 0; i < menuView.getChildCount(); i++) {
BottomNavigationItemView item = (BottomNavigationItemView) menuView.getChildAt(i);
Field LargeText = item.getClass().getDeclaredField("mLargeLabel");
LargeText.setAccessible(true);
Field SmallText = item.getClass().getDeclaredField("mSmallLabel");
SmallText.setAccessible(true);
TextView SmallTextView =(TextView) SmallText.get(item);
TextView LargeTextView =(TextView) LargeText.get(item);
SmallTextView.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
LargeTextView.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
SmallTextView.setGravity(Gravity.CENTER_VERTICAL | Gravity.CENTER_HORIZONTAL);
LargeTextView.setGravity(Gravity.CENTER_VERTICAL | Gravity.CENTER_HORIZONTAL);
LargeTextView.setPadding(0, 0, 0, 0);
SmallTextView.setPadding(0, 0, 0, 0);
}
} catch (NoSuchFieldException e) {
Log.e("BNVHelper", "Unable to get shift mode field", e);
} catch (IllegalAccessException e) {
Log.e("BNVHelper", "Unable to change value of shift mode", e);
}
}
}
sorry, it is dont work for me
– Sergey K.
Nov 22 at 8:57
try to set margins to 0 using the layout params and test it
– Koorosh Ghorbani
Nov 22 at 22:22
again a bad result ((
– Sergey K.
Nov 23 at 18:29
add a comment |
Use this helper , it uses reflection to change BottomNavigationBar's TextView(s) properties!
public class BottomNavigationViewHelper {
public static void refineBottomBar(Context context, BottomNavigationView view) {
BottomNavigationMenuView menuView = (BottomNavigationMenuView) view.getChildAt(0);
try {
for (int i = 0; i < menuView.getChildCount(); i++) {
BottomNavigationItemView item = (BottomNavigationItemView) menuView.getChildAt(i);
Field LargeText = item.getClass().getDeclaredField("mLargeLabel");
LargeText.setAccessible(true);
Field SmallText = item.getClass().getDeclaredField("mSmallLabel");
SmallText.setAccessible(true);
TextView SmallTextView =(TextView) SmallText.get(item);
TextView LargeTextView =(TextView) LargeText.get(item);
SmallTextView.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
LargeTextView.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
SmallTextView.setGravity(Gravity.CENTER_VERTICAL | Gravity.CENTER_HORIZONTAL);
LargeTextView.setGravity(Gravity.CENTER_VERTICAL | Gravity.CENTER_HORIZONTAL);
LargeTextView.setPadding(0, 0, 0, 0);
SmallTextView.setPadding(0, 0, 0, 0);
}
} catch (NoSuchFieldException e) {
Log.e("BNVHelper", "Unable to get shift mode field", e);
} catch (IllegalAccessException e) {
Log.e("BNVHelper", "Unable to change value of shift mode", e);
}
}
}
Use this helper , it uses reflection to change BottomNavigationBar's TextView(s) properties!
public class BottomNavigationViewHelper {
public static void refineBottomBar(Context context, BottomNavigationView view) {
BottomNavigationMenuView menuView = (BottomNavigationMenuView) view.getChildAt(0);
try {
for (int i = 0; i < menuView.getChildCount(); i++) {
BottomNavigationItemView item = (BottomNavigationItemView) menuView.getChildAt(i);
Field LargeText = item.getClass().getDeclaredField("mLargeLabel");
LargeText.setAccessible(true);
Field SmallText = item.getClass().getDeclaredField("mSmallLabel");
SmallText.setAccessible(true);
TextView SmallTextView =(TextView) SmallText.get(item);
TextView LargeTextView =(TextView) LargeText.get(item);
SmallTextView.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
LargeTextView.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
SmallTextView.setGravity(Gravity.CENTER_VERTICAL | Gravity.CENTER_HORIZONTAL);
LargeTextView.setGravity(Gravity.CENTER_VERTICAL | Gravity.CENTER_HORIZONTAL);
LargeTextView.setPadding(0, 0, 0, 0);
SmallTextView.setPadding(0, 0, 0, 0);
}
} catch (NoSuchFieldException e) {
Log.e("BNVHelper", "Unable to get shift mode field", e);
} catch (IllegalAccessException e) {
Log.e("BNVHelper", "Unable to change value of shift mode", e);
}
}
}
edited Nov 22 at 22:21
answered Nov 21 at 21:01
Koorosh Ghorbani
337110
337110
sorry, it is dont work for me
– Sergey K.
Nov 22 at 8:57
try to set margins to 0 using the layout params and test it
– Koorosh Ghorbani
Nov 22 at 22:22
again a bad result ((
– Sergey K.
Nov 23 at 18:29
add a comment |
sorry, it is dont work for me
– Sergey K.
Nov 22 at 8:57
try to set margins to 0 using the layout params and test it
– Koorosh Ghorbani
Nov 22 at 22:22
again a bad result ((
– Sergey K.
Nov 23 at 18:29
sorry, it is dont work for me
– Sergey K.
Nov 22 at 8:57
sorry, it is dont work for me
– Sergey K.
Nov 22 at 8:57
try to set margins to 0 using the layout params and test it
– Koorosh Ghorbani
Nov 22 at 22:22
try to set margins to 0 using the layout params and test it
– Koorosh Ghorbani
Nov 22 at 22:22
again a bad result ((
– Sergey K.
Nov 23 at 18:29
again a bad result ((
– Sergey K.
Nov 23 at 18:29
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53420239%2fcropped-title-of-item-bottomnavigationview%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown