gpt4 book ai didi

android - 在 Eclipse 中包含 Android-DirectionalViewPager .jar 时出错

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:06:37 24 4
gpt4 key购买 nike

我正在尝试在我的应用中实现垂直滑动。 (就像用 ViewPager 滑动一样,但是是垂直滑动)。

我找到了 Jake Whartons 图书馆 Android-DirectionalViewPager .它是一个独立的 .jar 文件,除了兼容库之外还应该包含在内。我将该文件包含在我的项目中。它现在位于“引用库”下,就像兼容性库一样。
但问题是,我什至无法让图书馆提供的例子发挥作用。调试器在行停止

setContentView(R.layout.main);

“找不到来源”

LogCat 抛出这个错误:“05-23 14:43:13.583: E/dalvikvm(329): 找不到类 'com.directionalviewpager.DirectionalViewPager',从方法 own.vvp.MainActivity.onCreate 中引用"

有人用过这个库吗?我需要一些帮助:)

这是我的代码:

list :

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="own.vvp"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk android:minSdkVersion="7" />

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

布局:

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<com.directionalviewpager.DirectionalViewPager
android:id="@+id/pager"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
/>

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="2dp"
android:orientation="horizontal">

<Button
android:id="@+id/horizontal"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:layout_marginRight="1dp"
android:text="Horizontal" />
<Button
android:id="@+id/vertical"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:layout_marginLeft="1dp"
android:text="Vertical" />

</LinearLayout>

</LinearLayout>

和主要 Activity :

package own.vvp;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.view.View;
import android.widget.Button;
import com.directionalviewpager.DirectionalViewPager;


public class MainActivity extends FragmentActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

//Set up the pager
final DirectionalViewPager pager = (DirectionalViewPager)findViewById(R.id.pager);
pager.setAdapter(new TestFragmentAdapter(getSupportFragmentManager()));

//Bind to control buttons
((Button)findViewById(R.id.horizontal)).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
pager.setOrientation(DirectionalViewPager.HORIZONTAL);
}
});
((Button)findViewById(R.id.vertical)).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
pager.setOrientation(DirectionalViewPager.VERTICAL);
}
});
}
}

除了包名和主要 Activity 的名称外,它与示例中的代码相同,所以我猜,我包含库的方式一定是错误的。

谢谢!

最佳答案

更新(2 月 1 日至 14 日): 这个库是一个非常好的选择。我目前在我的项目中使用它并且它工作完美。它仍在维护中,并且是对支持库 r19 中的标准 ViewPager 的非常接近的修改。另一个优点是,如果您使用的是 gradle,则可以通过 maven central 轻松集成和解决它。

https://github.com/castorflex/VerticalViewPager


感谢 Oleg Vaskevich,我能够从当前的 git 文件和 oleg 的添加/修复编译一个新的和工作的 directionalViewpager jar 文件。我可以确认它正在使用当前的 support-lib v4 r11。

https://dl.dropbox.com/u/24363935/android-directionalviewpager-1.2.1fixed.jar

希望这对某些人有用:)

添加:我在 DirectionalViewPager.setAdapter(PagerAdapter adapter){...}; 中有一个 IllegalArgumentException。所以我已经修改和修复,重新编译并上传了新的 jar。

关于android - 在 Eclipse 中包含 Android-DirectionalViewPager .jar 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10720276/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com