我按照Android文档https://developer.android.com/training/implementing-navigation/lateral.html#horizontal-paging
中的步骤操作我使用Android studio 1.2.1.1
我将他们的代码添加到我的XML
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.view.ViewPager
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent" />
我明白了
- 无法找到以下类的问题:
android.support.v4.view.ViewPager(修复构建路径,创建类)
提示:尝试构建项目。
我试过了:
在API 21和22之间切换
尝试Holo主题
添加支持库4和13
heres gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "ian.marxbrothers"
minSdkVersion 14
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.0.0'
compile 'com.android.support:support-v4:22.0.0'
compile 'com.android.support:support-v13:22.0.0'
}
答案 0 :(得分:0)
实际上没有答案。 Viewpager不会显示任何内容,但您仍然可以在布局中调整其大小,然后在xml中添加其内容