Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • Commit451/LabCoat
  • Iktwo/GitLabAndroid
  • jonduran3000/GitLabAndroid
  • steffandroid/GitLabAndroid
  • xiaoyanit/GitLabAndroid
  • scottolcott/GitLabAndroid
  • james.mu/GitLabAndroid
  • pushkarpandey27/GitLabAndroid
  • atomfrede/GitLabAndroid
  • burrito82/GitLabAndroid
  • txlong_onz/GitLabAndroid
  • ricardo.longa/GitLabAndroid
  • rubenroy/GitLabAndroid
  • remy_android/GitLabAndroid
  • mzestars/GitLabAndroid
  • theobisproject/LabCoat
  • tarek360/GitLabAndroid
  • TR4Android/LabCoat
  • lvsmart/LabCoat
  • buddybuild/LabCoat
  • tkuah/LabCoat
  • jay3126/LabCoat
  • rmad17/LabCoat
  • galvatron/LabCoat
  • lijianjian13/LabCoat
  • Cody2333/LabCoat
  • ajtfreitas/LabCoat
  • nestor.lobo/LabCoat
  • Microgamer/LabCoat
  • irvinwang/LabCoat
  • avallete/LabCoat
  • digicazter/LabCoat
  • lovexiaov/LabCoat
  • dineshkarpe/LabCoat
  • bak1an/LabCoat
  • loomis/LabCoat
  • sank20/LabCoat
  • Jawnnyfoo/LabCoat
  • scottyab/LabCoat
  • aleksandar-stefanovic/LabCoat
  • tfontana/LabCoat
  • fuzzmz/LabCoat
  • dipaksavaliya/LabCoat
  • adi.bk/LabCoat
  • andreea.voicu/LabCoat
  • H1ghT0p/LabCoat
  • indritqoku/LabCoat
  • armpogart/LabCoat
  • eyedol/LabCoat
  • khairulnizan/LabCoat
  • vadm.perspectiva/LabCoat
  • yiyoss1986/LabCoat
  • BRoy98/LabCoat
  • satyarth.23/LabCoat
  • victorpe76/LabCoat
  • canhnht/LabCoat
  • jinhu/LabCoat
  • weathery/LabCoat
  • gitlabproject_s/LabCoat
  • tfKamran/LabCoat
  • voxadam/LabCoat
  • nprail/LabCoat
  • terrakok/LabCoat
  • jungletian/LabCoat
  • goldins/LabCoat
  • insanum/LabCoat
  • lzrs/LabCoat
  • shankarg/LabCoat
  • rm3l/LabCoat
  • alamo_dev/LabCoat
  • insomniaqc/LabCoat
  • mrasif/LabCoat
  • Babasile/LabCoat
  • eeyoo/LabCoat
  • ditkin/LabCoat
  • unbubot/LabCoat
  • bschuhm/LabCoat
  • fanticker/LabCoat
  • colorwebdesigner/LabCoat
  • milouse/LabCoat
80 results
Show changes
Showing
with 94 additions and 69 deletions
Loading
Loading
@@ -24,7 +24,8 @@ class ProjectMemberFooterViewHolder(view: View) : RecyclerView.ViewHolder(view)
}
}
 
@BindView(R.id.button) lateinit var button: Button
@BindView(R.id.button)
lateinit var button: Button
 
init {
ButterKnife.bind(this, view)
Loading
Loading
Loading
Loading
@@ -28,10 +28,14 @@ class ProjectMemberViewHolder(view: View) : RecyclerView.ViewHolder(view) {
}
}
 
@BindView(R.id.overflow) lateinit var buttonOverflow: View
@BindView(R.id.name) lateinit var textUsername: TextView
@BindView(R.id.access) lateinit var textAccess: TextView
@BindView(R.id.image) lateinit var image: ImageView
@BindView(R.id.overflow)
lateinit var buttonOverflow: View
@BindView(R.id.name)
lateinit var textUsername: TextView
@BindView(R.id.access)
lateinit var textAccess: TextView
@BindView(R.id.image)
lateinit var image: ImageView
 
val popupMenu: PopupMenu
 
Loading
Loading
Loading
Loading
@@ -29,11 +29,16 @@ class ProjectViewHolder(view: View) : RecyclerView.ViewHolder(view) {
}
}
 
@BindView(R.id.project_image) lateinit var image: ImageView
@BindView(R.id.project_letter) lateinit var iconLetter: MaterialLetterIcon
@BindView(R.id.project_title) lateinit var textTitle: TextView
@BindView(R.id.project_description) lateinit var textDescription: TextView
@BindView(R.id.project_visibility) lateinit var iconVisibility: ImageView
@BindView(R.id.project_image)
lateinit var image: ImageView
@BindView(R.id.project_letter)
lateinit var iconLetter: MaterialLetterIcon
@BindView(R.id.project_title)
lateinit var textTitle: TextView
@BindView(R.id.project_description)
lateinit var textDescription: TextView
@BindView(R.id.project_visibility)
lateinit var iconVisibility: ImageView
 
init {
ButterKnife.bind(this, view)
Loading
Loading
@@ -66,7 +71,7 @@ class ProjectViewHolder(view: View) : RecyclerView.ViewHolder(view) {
textDescription.text = ""
}
 
if (project.isPublic) {
if (project.visibility == Project.VISIBILITY_PUBLIC) {
iconVisibility.setImageResource(R.drawable.ic_public_24dp)
} else {
iconVisibility.setImageResource(R.drawable.ic_private_24dp)
Loading
Loading
Loading
Loading
@@ -24,8 +24,10 @@ class SnippetViewHolder(view: View) : RecyclerView.ViewHolder(view) {
}
}
 
@BindView(R.id.title) lateinit var textTitle: TextView
@BindView(R.id.file_name) lateinit var textFileName: TextView
@BindView(R.id.title)
lateinit var textTitle: TextView
@BindView(R.id.file_name)
lateinit var textFileName: TextView
 
init {
ButterKnife.bind(this, view)
Loading
Loading
Loading
Loading
@@ -27,7 +27,8 @@ class TagViewHolder(view: View) : RecyclerView.ViewHolder(view) {
}
}
 
@BindView(R.id.title) lateinit var title: TextView
@BindView(R.id.title)
lateinit var title: TextView
 
var colorHighlighted: Int = 0
 
Loading
Loading
Loading
Loading
@@ -29,10 +29,14 @@ class TodoViewHolder(view: View) : RecyclerView.ViewHolder(view) {
}
}
 
@BindView(R.id.text_project) lateinit var textProject: TextView
@BindView(R.id.issue_image) lateinit internal var image: ImageView
@BindView(R.id.issue_message) lateinit internal var textMessage: TextView
@BindView(R.id.issue_creator) lateinit internal var textCreator: TextView
@BindView(R.id.text_project)
lateinit var textProject: TextView
@BindView(R.id.issue_image)
internal lateinit var image: ImageView
@BindView(R.id.issue_message)
internal lateinit var textMessage: TextView
@BindView(R.id.issue_creator)
internal lateinit var textCreator: TextView
 
init {
ButterKnife.bind(this, view)
Loading
Loading
Loading
Loading
@@ -27,8 +27,10 @@ class UserViewHolder(view: View) : RecyclerView.ViewHolder(view) {
}
}
 
@BindView(R.id.name) lateinit var textUsername: TextView
@BindView(R.id.image) lateinit var image: ImageView
@BindView(R.id.name)
lateinit var textUsername: TextView
@BindView(R.id.image)
lateinit var image: ImageView
 
init {
ButterKnife.bind(this, view)
Loading
Loading
Loading
Loading
@@ -28,9 +28,12 @@ class AccountViewHolder(view: View) : TypedViewHolder<Account>(view) {
}
}
 
@BindView(R.id.account_image) lateinit var image: ImageView
@BindView(R.id.account_username) lateinit var textUsername: TextView
@BindView(R.id.account_server) lateinit var textServer: TextView
@BindView(R.id.account_image)
lateinit var image: ImageView
@BindView(R.id.account_username)
lateinit var textUsername: TextView
@BindView(R.id.account_server)
lateinit var textServer: TextView
 
init {
ButterKnife.bind(this, view)
Loading
Loading
Loading
Loading
@@ -48,7 +48,7 @@ class ProjectFeedWidgetProvider : AppWidgetProvider() {
 
val account = ProjectFeedWidgetPrefs.getAccount(context, widgetId)
val feedUrl = ProjectFeedWidgetPrefs.getFeedUrl(context, widgetId)
if (account != null && feedUrl!= null) {
if (account != null && feedUrl != null) {
val intent = FeedWidgetService.newIntent(context, widgetId, account, feedUrl)
 
 
Loading
Loading
<?xml version="1.0" encoding="utf-8"?>
 
<set xmlns:android="http://schemas.android.com/apk/res/android">
<alpha android:fromAlpha="1.0" android:toAlpha="1.0"
android:duration="400"/>
<alpha
android:fromAlpha="1.0"
android:toAlpha="1.0"
android:duration="400" />
</set>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
 
<set xmlns:android="http://schemas.android.com/apk/res/android">
<alpha android:fromAlpha="0.0" android:toAlpha="1.0"
<alpha
android:fromAlpha="0.0"
android:toAlpha="1.0"
android:interpolator="@android:anim/accelerate_interpolator"
android:duration="400"/>
android:duration="400" />
</set>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
 
<set xmlns:android="http://schemas.android.com/apk/res/android">
<alpha android:fromAlpha="1.0" android:toAlpha="0.0"
<alpha
android:fromAlpha="1.0"
android:toAlpha="0.0"
android:interpolator="@android:anim/accelerate_interpolator"
android:duration="400"/>
android:duration="400" />
</set>
\ No newline at end of file
Loading
Loading
@@ -3,10 +3,7 @@
<item>
<shape>
<!--40% opacity to 0% opacity, as Material Design Spec suggests-->
<gradient
android:startColor="#00000000"
android:endColor="#66000000"
android:angle="270" />
<gradient android:startColor="#00000000" android:endColor="#66000000" android:angle="270" />
</shape>
</item>
</selector>
\ No newline at end of file
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zm1,15h-2v-6h2v6zm0,-8h-2V7h2v2z"/>
android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zm1,15h-2v-6h2v6zm0,-8h-2V7h2v2z" />
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M13.5,0.67s0.74,2.65 0.74,4.8c0,2.06 -1.35,3.73 -3.41,3.73 -2.07,0 -3.63,-1.67 -3.63,-3.73l0.03,-0.36C5.21,7.51 4,10.62 4,14c0,4.42 3.58,8 8,8s8,-3.58 8,-8C20,8.61 17.41,3.8 13.5,0.67zM11.71,19c-1.78,0 -3.22,-1.4 -3.22,-3.14 0,-1.62 1.05,-2.76 2.81,-3.12 1.77,-0.36 3.6,-1.21 4.62,-2.58 0.39,1.29 0.59,2.65 0.59,4.04 0,2.65 -2.15,4.8 -4.8,4.8z"/>
android:pathData="M13.5,0.67s0.74,2.65 0.74,4.8c0,2.06 -1.35,3.73 -3.41,3.73 -2.07,0 -3.63,-1.67 -3.63,-3.73l0.03,-0.36C5.21,7.51 4,10.62 4,14c0,4.42 3.58,8 8,8s8,-3.58 8,-8C20,8.61 17.41,3.8 13.5,0.67zM11.71,19c-1.78,0 -3.22,-1.4 -3.22,-3.14 0,-1.62 1.05,-2.76 2.81,-3.12 1.77,-0.36 3.6,-1.21 4.62,-2.58 0.39,1.29 0.59,2.65 0.59,4.04 0,2.65 -2.15,4.8 -4.8,4.8z" />
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M5,16c0,3.87 3.13,7 7,7s7,-3.13 7,-7v-4L5,12v4zM16.12,4.37l2.1,-2.1 -0.82,-0.83 -2.3,2.31C14.16,3.28 13.12,3 12,3s-2.16,0.28 -3.09,0.75L6.6,1.44l-0.82,0.83 2.1,2.1C6.14,5.64 5,7.68 5,10v1h14v-1c0,-2.32 -1.14,-4.36 -2.88,-5.63zM9,9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM15,9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
android:pathData="M5,16c0,3.87 3.13,7 7,7s7,-3.13 7,-7v-4L5,12v4zM16.12,4.37l2.1,-2.1 -0.82,-0.83 -2.3,2.31C14.16,3.28 13.12,3 12,3s-2.16,0.28 -3.09,0.75L6.6,1.44l-0.82,0.83 2.1,2.1C6.14,5.64 5,7.68 5,10v1h14v-1c0,-2.32 -1.14,-4.36 -2.88,-5.63zM9,9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM15,9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z" />
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M19,13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/>
android:pathData="M19,13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" />
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="96dp"
android:height="96dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
android:width="96dp"
android:height="96dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M19,13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/>
android:pathData="M19,13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" />
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M7,10l5,5 5,-5z"/>
android:pathData="M7,10l5,5 5,-5z" />
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M9,11.75c-0.69,0 -1.25,0.56 -1.25,1.25s0.56,1.25 1.25,1.25 1.25,-0.56 1.25,-1.25 -0.56,-1.25 -1.25,-1.25zM15,11.75c-0.69,0 -1.25,0.56 -1.25,1.25s0.56,1.25 1.25,1.25 1.25,-0.56 1.25,-1.25 -0.56,-1.25 -1.25,-1.25zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8 0,-0.29 0.02,-0.58 0.05,-0.86 2.36,-1.05 4.23,-2.98 5.21,-5.37C11.07,8.33 14.05,10 17.42,10c0.78,0 1.53,-0.09 2.25,-0.26 0.21,0.71 0.33,1.47 0.33,2.26 0,4.41 -3.59,8 -8,8z"/>
android:pathData="M9,11.75c-0.69,0 -1.25,0.56 -1.25,1.25s0.56,1.25 1.25,1.25 1.25,-0.56 1.25,-1.25 -0.56,-1.25 -1.25,-1.25zM15,11.75c-0.69,0 -1.25,0.56 -1.25,1.25s0.56,1.25 1.25,1.25 1.25,-0.56 1.25,-1.25 -0.56,-1.25 -1.25,-1.25zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8 0,-0.29 0.02,-0.58 0.05,-0.86 2.36,-1.05 4.23,-2.98 5.21,-5.37C11.07,8.33 14.05,10 17.42,10c0.78,0 1.53,-0.09 2.25,-0.26 0.21,0.71 0.33,1.47 0.33,2.26 0,4.41 -3.59,8 -8,8z" />
</vector>