do not use id twice

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
tobiasKaminsky 2018-01-08 15:47:44 +01:00
parent ab8b149067
commit 62f74a8ff5
No known key found for this signature in database
GPG key ID: 0E00D4D47D0C5AF7
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"