私は(Eclipseで)AndroidSlidingUpPanel libraryを使用しようとしていると私はこのエラーがあります:トラブル - エラー膨張させるクラス
<?xml version="1.0" encoding="utf-8"?>
<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"
tools:context=".DemoActivity" >
<com.sothree.slidinguppanel.SlidingUpPanelLayout
xmlns:sothree="http://schemas.android.com/apk/lib/res-auto"
android:id="@+id/sliding_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="bottom"
sothree:panelHeight="68dp"
sothree:shadowHeight="4dp"
sothree:paralaxOffset="100dp"
sothree:dragView="@+id/name">
</com.sothree.slidinguppanel.SlidingUpPanelLayout>
</RelativeLayout>
I:これは私のレイアウトである
04-19 20:09:48.413: E/AndroidRuntime(13760): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.mendozatourapp/com.mendozatourapp.activitys.MapsActivity}: android.view.InflateException: Binary XML file line #8: Error inflating class com.sothree.slidinguppanel.library.SlidingUpPanelLayout
をプロジェクト全体をダウンロードし、ライブラリとして「メイン」をインポートしました。次に、このライブラリをプロジェクトのJavaビルドパスに追加します。私は、Javaのパスの問題を構築していると感じています。何か案が?
私を読んでいただきありがとうございました。
Eclipse用のライブラリプロジェクトにする必要があります。 'project.properties'ファイルと' AndroidManifest.xml'ファイルをライブラリに追加しましたか? –
はい、私はそれをしました。ありがとうございました。 – flagg327