Пользовательский значок запуска приложения проблемы? - PullRequest
0 голосов
/ 08 мая 2018

Я получил весь список установленных приложений с подробностями (имя_приложения, имя_пакета приложения, имя_приложения).

Я приложил Снимки экрана , которые показывают, с какой проблемой я все еще сталкиваюсь.

Screenshot-1

screenshot-2

Это мой код

  1. Адаптер списка приложений JAVA

  2. Список приложений Cell_layout XML , в XMl я также установил imageView scalType, но он не работает.

  3. Активность в списке приложений JAVA

Ответы [ 2 ]

0 голосов
/ 08 мая 2018

так что это значки уже установленных приложений! сейчас просто создайте свой список приложений Cell_layout XML для фиксированного размера imageView (~ 50dp, ~ 50dp) вместо wrap_content

сейчас сделайте это! это должно решить проблему сейчас хорошо!

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center|top"
    android:orientation="vertical">


        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:padding="@dimen/_10sdp">

            <ImageView
                android:id="@+id/ivAppIcon"
                android:layout_width="35dp"
                android:layout_height="35dp"
                android:src="@mipmap/ic_launcher" />

            <TextView
                android:id="@+id/tvAppLabel"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_marginTop="@dimen/_5sdp"
                android:ellipsize="end"
                android:lines="1"
                android:maxEms="10"
                android:text="--"
                android:textColor="@color/colorWhite" />
        </LinearLayout>
0 голосов
/ 08 мая 2018

Проверьте это ..

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.adruser.annotationdemo">

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".interfaceclass.MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>
            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>
    </activity>
    <activity android:name=".interfaceclass.SecondActivity"/>
</application>

</manifest>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...