Merge pull request #1933 from nextcloud/userinfoButterknife

do not use id twice
This commit is contained in:
Tobias Kaminsky 2018-01-09 08:19:40 +01:00 committed by GitHub
commit 666ff25ce6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View file

@ -113,10 +113,10 @@ public class UserInfoActivity extends FileActivity {
@BindView(R.id.user_icon)
public ImageView avatar;
@BindView(R.id.drawer_username)
@BindView(R.id.userinfo_username)
public TextView userName;
@BindView(R.id.drawer_username_full)
@BindView(R.id.userinfo_username_full)
public TextView fullName;
@BindView(R.id.phone_container)
@ -277,7 +277,7 @@ public class UserInfoActivity extends FileActivity {
private void setHeaderImage() {
if (getStorageManager().getCapability(account.name).getServerBackground() != null) {
final AppBarLayout appBar = (AppBarLayout) findViewById(R.id.appbar);
final AppBarLayout appBar = findViewById(R.id.appbar);
if (appBar != null) {
String background = getStorageManager().getCapability(account.name).getServerBackground();

View file

@ -76,7 +76,7 @@
android:orientation="vertical">
<TextView
android:id="@+id/drawer_username_full"
android:id="@+id/userinfo_username_full"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="end"
@ -90,7 +90,7 @@
android:textStyle="bold"/>
<TextView
android:id="@+id/drawer_username"
android:id="@+id/userinfo_username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="end"