0

アプリの開発を開始しましたが、クラスを変更したり、マニフェストを変更したりせず、xml レイアウトのみを作成しました。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#111111"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".Playing" >

<RelativeLayout
    android:id="@+id/rlcontrols"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true" >

    <Button
        android:id="@+id/bplay"
        android:layout_width="70dp"
        android:layout_height="70dp"
        android:layout_below="@+id/tvalbum"
        android:layout_centerHorizontal="true"
        android:background="@drawable/play"
        android:contentDescription="@+String/play" />

    <Button
        android:id="@+id/bprevious"
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:layout_below="@id/tvalbum"
        android:layout_marginRight="10dp"
        android:layout_toLeftOf="@id/bplay"
        android:background="@drawable/previous"
        android:contentDescription="@+String/play" />

    <Button
        android:id="@+id/bnext"
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:layout_below="@id/tvalbum"
        android:layout_marginLeft="10dp"
        android:layout_toRightOf="@id/bplay"
        android:background="@drawable/next"
        android:contentDescription="@+String/play" />

    <Button
        android:id="@+id/brepeat"
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:layout_alignBottom="@id/bnext"
        android:layout_marginLeft="10dp"
        android:layout_toRightOf="@id/bnext"
        android:background="@drawable/repeat"
        android:contentDescription="@+String/play" />

    <Button
        android:id="@+id/bshuffle"
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:layout_alignBottom="@id/bprevious"
        android:layout_marginRight="10dp"
        android:layout_toLeftOf="@id/bprevious"
        android:background="@drawable/shuffle"
        android:contentDescription="@+String/play" />

    <!-- <SeekBar
        android:id="@+id/songProgressBar"
        android:layout_width="fill_parent"
        android:layout_marginTop="10dp"
        android:layout_height="wrap_content"
        android:progressDrawable="@drawable/progress"
        android:thumb="@drawable/seeker"
        android:layout_below="@id/bplay" /> -->

</RelativeLayout>

<TextView
    android:id="@+id/tvalbum"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_above="@id/rlcontrols"
    android:gravity="center"
    android:text="@string/album"
    android:textSize="20sp" />

<TextView
    android:id="@+id/tvartist"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_above="@id/tvalbum"
    android:gravity="center"
    android:text="@string/artist"
    android:textSize="20sp" />

<TextView
    android:id="@+id/tvtitle"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_above="@id/tvartist"
    android:gravity="center"
    android:text="@string/title"
    android:textSize="25sp" />

<ImageView
    android:id="@+id/ivalbumart"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_above="@id/tvtitle"
    android:contentDescription="@+String/albumart"
    android:src="@drawable/albumart" />
</RelativeLayout>

デバッグ スタック:

Thread [<1> main] (Suspended (exception RuntimeException))  
ActivityThread.performLaunchActivity(ActivityThread$ActivityClientRecord, Intent) line: 2100    
ActivityThread.handleLaunchActivity(ActivityThread$ActivityClientRecord, Intent) line: 2125 
ActivityThread.access$600(ActivityThread, ActivityThread$ActivityClientRecord, Intent) line: 140    
ActivityThread$H.handleMessage(Message) line: 1227  
ActivityThread$H(Handler).dispatchMessage(Message) line: 99 
Looper.loop() line: 137 
ActivityThread.main(String[]) line: 4898    
Method.invokeNative(Object, Object[], Class, Class[], Class, int, boolean) line: not available [native method]  
Method.invoke(Object, Object...) line: 511  
ZygoteInit$MethodAndArgsCaller.run() line: 1006 
ZygoteInit.main(String[]) line: 773 
NativeStart.main(String[]) line: not available [native method]  

アクティビティを起動したときにソースが見つからないと言っている

これが何を意味するのかわからないので、どんな助けでもありがとう

4

3 に答える 3

1

appcompat_v7 ライブラリを見逃したという理由だけで、同様の問題が発生しました。私の場合、プロジェクトの名前を Prj_A としましょう。PrjA が必要とするライブラリを知るには、project.properties ファイルを読む必要があります (プロジェクトのルートを参照してください)。

project.properties ファイルに記載されているすべてのリソースについて、そのライブラリを追加する必要があります。Lib_1、Lib_2 ... Lib_n としましょう。これは、prj_A から project.properties ファイルによって要求された各 Lib_x を「android プロジェクトとして」インポートし、Prj_A に移動して右クリックし、[プロパティ]、[Android] を選択する必要があることを意味します。ウィンドウのポップアップが立ち上がり、下部のフレームに Prj_A のライブラリが表示されます。言及されている各ライブラリの前に緑色のマークがあることを確認してください。

赤い疑問符が付いたすべてのライブラリ、または欠落しているライブラリごとに、ライブラリを表示しているフレームで次の手順を実行する必要があります。 [追加] ボタンをクリックすると、すべてのライブラリ候補を含むウィンドウがポップアップ表示されます (つまり、IMPORTED および OPENあなたのワークスペース)。ライブラリがない場合は、最初にワークスペースにライブラリをインポートして開く必要があります。

次に、赤い疑問符が付いた各ライブラリを削除する必要があります。ライブラリを表示しているフレームで、赤い「?」が付いたライブラリをクリックします。削除ボタンをクリックします。次に、[適用] をクリックします。

于 2015-04-05T07:34:20.067 に答える
1

あなたのプロジェクトがなければ推測することしかできませんが、通常、これはマニフェスト ファイルが正しくないことが原因です。パッケージが正しいことを確認してから、次のようなアクティビティを呼び出す必要があります

<activity
     android:label="@string/app_name"
     android:name=".MyLaunchActivity" >
     <intent-filter >
          <action android:name="android.intent.action.MAIN" />
          <category android:name="android.intent.category.LAUNCHER" />
     </intent-filter>
 </activity>
 <activity android:name=".My_Second_Activity" >
 </activity>
于 2013-03-18T18:45:21.087 に答える
1

コードをデバッグしようとしていましたか? You are missing Android Vx.jar file's source code. のような同様の問題がありました。このリンクを参照してください。 http://android.opensourceror.org/2010/01/18/android-source/

于 2013-03-19T13:43:22.387 に答える