Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 16aaaea4 authored by Jorge Ruesga's avatar Jorge Ruesga Committed by Gerrit Code Review
Browse files

settings: contributors cloud



Change-Id: If5b89e0d278b7a0c85c966e09264b60927889fc9
JIRA: RM-154
Signed-off-by: default avatarJorge Ruesga <jorge@ruesga.com>
parent c2a7c19f
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -1857,6 +1857,20 @@
            </intent-filter>
        </activity>

        <activity android:name="Settings$ContributorsCloudActivity"
                android:label="@string/contributors_cloud_fragment_title"
                android:windowSoftInputMode="stateHidden|adjustNothing"
                android:taskAffinity=""
                android:excludeFromRecents="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <action android:name="android.settings.CONTRIBUTORS" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
            <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
                android:value="com.android.settings.contributors.ContributorsCloudFragment" />
        </activity>

        <!-- CyanogenMod activities End -->

        <activity android:name=".cyanogenmod.SpamList" />

assets/contributors.db

0 → 100644
+249 KiB

File added.

No diff preview for this file type.

+27 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2013 The CyanogenMod Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->

<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24">

    <path
        android:fillColor="@color/theme_accent"
        android:pathData="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8
4v2h16v-2c0-2.66-5.33-4-8-4z" />
</vector>
+27 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2011 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->

<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="512dp"
    android:height="442.182dp"
    android:viewportWidth="512"
    android:viewportHeight="442.182">

    <path
        android:fillColor="#000"
        android:pathData="M0,442.182h512L256,0L0,442.182z M279.272,372.363h-46.545v-46.545h46.545V372.363z
M279.272,279.272h-46.545v-93.091 h46.545V279.272z" />
</vector>
+34 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2011 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:minHeight="48dp"
    android:orientation="vertical"
    android:layout_margin="16dp"
    android:gravity="center_vertical">

    <TextView android:id="@+id/contributor_name"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:drawableStart="@drawable/ic_person"
        android:drawablePadding="8dp"
        android:singleLine="true"
        android:maxLines="1"
        android:ellipsize="end"
        android:gravity="center_vertical" />
</LinearLayout>
Loading