-1

こんにちは、お気に入りのコミュニティです。

私は最近、最初のアプリをプレイ ストア マーケットに投入しましたが、数時間後にそこに表示されました。しかし、問題は、私がそれを見つけることができないという問題が原因で、それがすでに市場に出ていることを認識していなかった最初の日です. そこで、言語サポートを追加して別のバージョンに更新する必要があることを教えました。この素敵なボードでヒントを見つけた後、アプリ名を引用符で囲むと、検索クエリにのみ表示されるアプリがあることがわかりました。しかし、なぜそれは、より良い検索結果を得るためにアプリの名前を変更する必要があるかを誰かが知っていますか.

私はすでにキャメルケース表記「myAppTitle」から「my app title」に変更しましたが、これは実際には私の問題の解決策ではありませんでした.

さらに、一部のAndroidデバイスで他の多くの人と同じ問題が発生しました。私のアプリはほぼ 70% のデバイス (android v14 以降) で実行されているようですが、一部のデバイスでは例外が発生します。

viewrootimpl senduseractionevent() mview == null

一部の人々は、サムスンのデバイスでほとんど同じ問題を抱えています...私が見つけた答えは、サムスンにはタッチウィザード用の特別なAndroidレイヤーがあるということでした。しかし、その問題を回避するにはどうすればよいですか?

ありがとうございます。

ここで、この問題を引き起こすレイアウトからの抜粋..

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/TableLayout1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal" >

    <!-- ROW -->

    <TableRow
        android:id="@+id/tableRow1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="0.15" >

        <TextView
            android:id="@+id/textView__game_title"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="@color/black"
            android:gravity="center"
            android:text="anyText"
            android:textColor="#ffffff"
            android:textSize="20sp" />
    </TableRow>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="0.5"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/textView__game_word1"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:background="@color/yellow"
            android:gravity="center"
            android:onClick="onClick"
            android:text="anyText?"
            android:textSize="35sp" />

        <TextView
            android:id="@+id/textView__game_word2"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:background="@color/red"
            android:gravity="center"
            android:onClick="onClick"
            android:text="anyText?"
            android:textSize="35sp" />

        <TextView
            android:id="@+id/textView__game_word3"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:background="@color/blue"
            android:gravity="center"
            android:onClick="onClick"
            android:text="anytext?"
            android:textSize="35sp" />

    </LinearLayout>

    <TableRow
        android:id="@+id/tableRow3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="0.15" >

        <TextView
            android:id="@+id/textView__game_score"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:background="@android:color/black"
            android:gravity="center|left"
            android:paddingLeft="15dp"
            android:text="Score:\n0"
            android:textColor="#ffffff"
            android:textSize="20sp" />

        <TextView
            android:id="@+id/textView__game_round"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:background="@android:color/black"
            android:gravity="center|right"
            android:paddingRight="15dp"
            android:text="Round:\n 0 of 100"
            android:textColor="#ffffff"
            android:textSize="20sp" />
    </TableRow>

</TableLayout>
4

2 に答える 2

0

上記で説明した問題の解決策を見つけました。

まず、レイアウトの問題とメッセージ: "viewrootimpl senduseractionevent() mview == null"

レイアウトを線形レイアウトに変更することで簡単に解決できます。さらに、TextViews から Buttons に変更して、samsung galaxy s3 などのすべての Android デバイスの 30% でアプリが正しく機能しない問題を解決しました。これらのデバイスでは、Textviews の onClicks に問題があったため、Buttons を使用することで問題が修正されました。viewrootimpl... はまだ null ですが、アプリの動作には何の影響もありません...他の多くの投稿と同様に、このログ出力は無視できます。

第二に、「myapp title」を使用せずに Google Play マーケットの検索機能を使用して、私のアプリが表示されない理由は、Google によって作成されたアプリの内部ランキングです。Play ストアでのアプリのランキングは、さまざまな要因によって異なります。1つはユーザーによる評価です。しかし、重要な要素の 1 つは、アプリのタイトルに使用されているキーワードによるランキングです。アプリのタイトルによく使うキーワードを使えばアプリは見つけやすいのですが、キーワードを含まないアプリのタイトルを使えば引用符でしかアプリを見つけられません。そこで、最後にいくつかのキーワードを追加してアプリのタイトルを変更し、Playストアに更新した後、マーケットの検索機能を使用してすぐにアプリを見つけました.

うまくいけば、この投稿が同じ問題に苦しんでいる他の人に役立つことを願っています. 幸運を

于 2015-10-05T16:13:24.147 に答える
0

あなたのアプリは新しいので、Google Play には上位の結果のみが表示されます。そのため、アプリを見つけるのに苦労しています。アプリのダウンロード数が 1,000 を超えると、他のユーザーに検索されやすくなります。

于 2015-09-21T01:54:55.383 に答える