Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
xabber-android
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
xabber-android
Commits
fa1907bd
Commit
fa1907bd
authored
Jul 20, 2015
by
Grigory Fedorov
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #515 from equescalculi/develop
Fix lint errors concerning the layout
parents
7b7d3030
0d31112e
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
5 additions
and
13 deletions
+5
-13
account_add_fragment.xml
app/src/main/res/layout/account_add_fragment.xml
+1
-1
account_group_item_bottom_separator.xml
...c/main/res/layout/account_group_item_bottom_separator.xml
+1
-1
contact_list.xml
app/src/main/res/layout/contact_list.xml
+1
-1
contact_list_drawer_header.xml
app/src/main/res/layout/contact_list_drawer_header.xml
+1
-1
contact_list_item.xml
app/src/main/res/layout/contact_list_item.xml
+0
-1
contact_title.xml
app/src/main/res/layout/contact_title.xml
+0
-1
contact_vcard_viewer_fragment.xml
app/src/main/res/layout/contact_vcard_viewer_fragment.xml
+0
-2
expandable_fake_toolbar.xml
app/src/main/res/layout/expandable_fake_toolbar.xml
+1
-1
list.xml
app/src/main/res/layout/list.xml
+0
-1
occupant_list_item.xml
app/src/main/res/layout/occupant_list_item.xml
+0
-2
status_editor.xml
app/src/main/res/layout/status_editor.xml
+0
-1
No files found.
app/src/main/res/layout/account_add_fragment.xml
View file @
fa1907bd
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
>
android:layout_height=
"match_parent"
>
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
<LinearLayout
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:layout_height=
"match_parent"
android:orientation=
"vertical"
android:orientation=
"vertical"
...
...
app/src/main/res/layout/account_group_item_bottom_separator.xml
View file @
fa1907bd
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
android:background=
"@color/grey_300"
android:background=
"@color/grey_300"
android:id=
"@+id/bottom_layer"
android:id=
"@+id/bottom_layer"
>
>
<RelativeLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
<RelativeLayout
android:orientation=
"vertical"
android:orientation=
"vertical"
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"4dp"
android:layout_height=
"4dp"
...
...
app/src/main/res/layout/contact_list.xml
View file @
fa1907bd
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
>
android:layout_height=
"match_parent"
>
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
<LinearLayout
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:layout_height=
"match_parent"
android:orientation=
"vertical"
>
android:orientation=
"vertical"
>
...
...
app/src/main/res/layout/contact_list_drawer_header.xml
View file @
fa1907bd
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
>
android:layout_height=
"wrap_content"
>
<TextView
xmlns:android=
"http://schemas.android.com/apk/res/android"
<TextView
android:id=
"@+id/drawer_header_action_xmpp_accounts"
android:id=
"@+id/drawer_header_action_xmpp_accounts"
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"48dp"
android:layout_height=
"48dp"
...
...
app/src/main/res/layout/contact_list_item.xml
View file @
fa1907bd
...
@@ -41,7 +41,6 @@
...
@@ -41,7 +41,6 @@
/>
/>
<ImageView
<ImageView
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:id=
"@+id/avatar"
android:id=
"@+id/avatar"
android:layout_width=
"@dimen/avatar_size_toolbar"
android:layout_width=
"@dimen/avatar_size_toolbar"
android:layout_height=
"@dimen/avatar_size_toolbar"
android:layout_height=
"@dimen/avatar_size_toolbar"
...
...
app/src/main/res/layout/contact_title.xml
View file @
fa1907bd
...
@@ -8,7 +8,6 @@
...
@@ -8,7 +8,6 @@
>
>
<ImageView
<ImageView
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:id=
"@+id/avatar"
android:id=
"@+id/avatar"
android:layout_width=
"@dimen/avatar_size_toolbar"
android:layout_width=
"@dimen/avatar_size_toolbar"
android:layout_height=
"@dimen/avatar_size_toolbar"
android:layout_height=
"@dimen/avatar_size_toolbar"
...
...
app/src/main/res/layout/contact_vcard_viewer_fragment.xml
View file @
fa1907bd
...
@@ -8,7 +8,6 @@
...
@@ -8,7 +8,6 @@
xmlns:android=
"http://schemas.android.com/apk/res/android"
>
xmlns:android=
"http://schemas.android.com/apk/res/android"
>
<LinearLayout
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:id=
"@+id/xmpp_items"
android:id=
"@+id/xmpp_items"
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
...
@@ -16,7 +15,6 @@
...
@@ -16,7 +15,6 @@
/>
/>
<LinearLayout
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:id=
"@+id/contact_info_items"
android:id=
"@+id/contact_info_items"
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
...
...
app/src/main/res/layout/expandable_fake_toolbar.xml
View file @
fa1907bd
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
android:layout_gravity=
"bottom"
android:layout_gravity=
"bottom"
android:paddingBottom=
"10dp"
>
android:paddingBottom=
"10dp"
>
<ImageView
xmlns:android=
"http://schemas.android.com/apk/res/android"
<ImageView
android:id=
"@+id/avatar"
android:id=
"@+id/avatar"
android:layout_width=
"@dimen/avatar_large_size"
android:layout_width=
"@dimen/avatar_large_size"
android:layout_height=
"@dimen/avatar_large_size"
android:layout_height=
"@dimen/avatar_large_size"
...
...
app/src/main/res/layout/list.xml
View file @
fa1907bd
...
@@ -22,7 +22,6 @@
...
@@ -22,7 +22,6 @@
<include
layout=
"@layout/toolbar_default"
/>
<include
layout=
"@layout/toolbar_default"
/>
<ListView
<ListView
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:id=
"@android:id/list"
android:id=
"@android:id/list"
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:layout_height=
"match_parent"
...
...
app/src/main/res/layout/occupant_list_item.xml
View file @
fa1907bd
...
@@ -24,7 +24,6 @@
...
@@ -24,7 +24,6 @@
>
>
<ImageView
<ImageView
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:id=
"@+id/avatar"
android:id=
"@+id/avatar"
android:layout_width=
"@dimen/avatar_size_toolbar"
android:layout_width=
"@dimen/avatar_size_toolbar"
android:layout_height=
"@dimen/avatar_size_toolbar"
android:layout_height=
"@dimen/avatar_size_toolbar"
...
@@ -32,7 +31,6 @@
...
@@ -32,7 +31,6 @@
/>
/>
<ImageView
<ImageView
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:id=
"@+id/affilation"
android:id=
"@+id/affilation"
android:layout_width=
"2dip"
android:layout_width=
"2dip"
android:layout_height=
"@dimen/avatar_size_toolbar"
android:layout_height=
"@dimen/avatar_size_toolbar"
...
...
app/src/main/res/layout/status_editor.xml
View file @
fa1907bd
...
@@ -88,7 +88,6 @@
...
@@ -88,7 +88,6 @@
</LinearLayout>
</LinearLayout>
<ListView
<ListView
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:id=
"@android:id/list"
android:id=
"@android:id/list"
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment