-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#1556 - Toolbar, new Drawer and new Account Manager #1559
Changes from all commits
877f790
271328e
07a3e35
25b52f1
adebaf9
4efcb5c
ac9876f
7df97af
d3e1a9b
4810094
13487e9
d7dfb27
6711ff7
05b8580
fab4661
a770714
963fefb
1d7a36a
bab107c
afbc964
099a63d
ae22568
65c8d24
a75c853
4e19a57
b482479
1c574ab
7dad981
4d34c47
fc7f6c0
7e4ff69
03e6244
c6eb254
601771d
a081179
811c492
14749c3
e599b7b
812e889
aea5471
9951654
b7b80fc
eb58723
f23a17d
75e35fe
8784cf8
19968fc
7488c71
177f01e
272f83c
a4af5e9
8dca95c
06a332a
2d2cc7d
49a6fbc
cedd715
da65e70
b639bd4
d00571d
57191c3
6e9a86a
80a9edb
9a4269e
6164510
41779aa
3ba849d
0e39811
2e29e0f
83673db
4aac26e
2937ce1
0b451d0
a0d3714
75a2243
1064bba
dc54faa
3188e1a
4c9a38a
5a131a2
f435822
068d2a8
7c8a2e9
328f4de
7748321
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
ownCloud Android client application | ||
|
||
Copyright (C) 2016 ownCloud GmbH. | ||
|
||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License version 2, | ||
as published by the Free Software Foundation. | ||
|
||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
|
||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
--> | ||
<LinearLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="match_parent" | ||
android:layout_height="72dp" | ||
android:orientation="horizontal" | ||
android:weightSum="1"> | ||
|
||
<ImageView | ||
android:id="@+id/icon" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="center_vertical" | ||
android:layout_marginLeft="20dp" | ||
android:layout_marginStart="20dp" | ||
android:src="@drawable/ic_account_plus"/> | ||
|
||
<TextView | ||
android:id="@+id/name" | ||
android:layout_width="0dp" | ||
android:layout_height="match_parent" | ||
android:layout_marginLeft="28dp" | ||
android:layout_marginStart="20dp" | ||
android:layout_weight="1" | ||
android:gravity="center_vertical" | ||
android:paddingRight="@dimen/standard_padding" | ||
android:paddingEnd="@dimen/standard_padding" | ||
android:text="@string/placeholder_filename" | ||
android:textColor="@color/primary" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we use OC blue for text here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh, it's the button. OK, might work. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we should use "primary" as set here which is one of the oc blue colors. |
||
android:textSize="@dimen/two_line_primary_text_size"/> | ||
|
||
</LinearLayout> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be added also to
.ui.activity.UploadListActivity
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes :)