Преглед изворни кода

do not use id twice

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
tobiasKaminsky пре 7 година
родитељ
комит
62f74a8ff5

+ 3 - 3
src/main/java/com/owncloud/android/ui/activity/UserInfoActivity.java

@@ -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();

+ 2 - 2
src/main/res/layout/toolbar_user_information.xml

@@ -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"