我想制作这种水平滚动,看图片
>>>> ............................... .............
保存在res / layout / main.xml的XML文件: 我是对的,我的main.xml文件有worng吗?我想用。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView android:id="@+id/imageView1"
android:layout_width="wrap_content" android:layout_height="200dp"> </ImageView>
<TextView android:text="Zoo"
android:id="@+id/PicDescription" android:layout_width="wrap_content"
android:textSize="40sp" android:layout_height="wrap_content"
android:layout_gravity="center" android:layout_marginTop="10dp"></TextView>
<TextView android:text="Z" android:id="@+id/captitalText"
android:layout_height="wrap_content" android:layout_gravity="center" android:textSize="100sp"
android:layout_width="wrap_content" android:layout_marginTop="25dp"></TextView>
保存在res / values / letters.xml的XML文件:
<?xml version="1.0" encoding="utf-8"?>
resources>
<string-array name="desc">
<item>Apple</item>
<item>Ball</item>
...
<item>Zoo</item>
</string-array>
<string-array name="capitalLetter">
<item>A</item>
<item>B</item>
...
<item>Z</item>
</string-array>
android中的Horizontal scrolling动作的代码是什么?请给出建议,我是android的新手,我完全混淆了滚动。我遵循此link1 link2但无法理解。 在此先感谢,希望你能解决这个问题。
编辑:9月11日
这是我的代码。当我尝试滚动然后更改B时,当完成滚动页面时,A再次成为。我想,当滚动完成起始值时我会调用,我是对的吗?
给我一些建议,我该怎样做才能修复此代码。
public class Test extends Activity {
private static final int SWIPE_MIN_DISTANCE = 120;
private static final int SWIPE_MAX_OFF_PATH = 250;
private static final int SWIPE_THRESHOLD_VELOCITY = 200;
private GestureDetector gestureDetector;
String[] big;
TextView txtbig;
int count=0;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
big = getResources().getStringArray(R.array.capitalLetter);
gestureDetector = new GestureDetector(new MyGestureDetector());
View mainview = (View) findViewById(R.id.mainView);
mainview.setOnTouchListener(new View.OnTouchListener() {
public boolean onTouch(View v, MotionEvent event) {
if (gestureDetector.onTouchEvent(event)) {
textChange();
return true;
}
return false;
}
});
//textChange();
}
private void textChange() {
txtbig = (TextView) findViewById(R.id.bigText);
String bigTextString=big[count];
txtbig.setText(bigTextString);
count++;
if(count==big.length)
{
count=0;
}
}
class MyGestureDetector extends SimpleOnGestureListener {
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,
float velocityY) {
Intent intent = new Intent(Test.this.getBaseContext(),Test.class);
//textChange();
if (Math.abs(e1.getY() - e2.getY()) > SWIPE_MAX_OFF_PATH) {
//textChange();
return false;
}
// right to left swipe
if (e1.getX() - e2.getX() > SWIPE_MIN_DISTANCE
&& Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) { textChange();
startActivity(intent);
Test.this.overridePendingTransition(
R.anim.slide_in_right, R.anim.slide_out_left);
return true;
// right to left swipe
} else if (e2.getX() - e1.getX() > SWIPE_MIN_DISTANCE
&& Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {
// startActivity(intent);
// textChange();
Test.this.overridePendingTransition(
R.anim.slide_in_left, R.anim.slide_out_right);
}
return false;
}
@Override
public boolean onDown(MotionEvent e) {
return true;
}
}
}
答案 0 :(得分:2)
答案 1 :(得分:2)
Android有几个内置的HorizontalScrollView并从您的问题中读取,看起来您只想启用滚动并能够锁定每个页面供您选择。
ViewPager可能就是您实现它所需要的。您可以从Android Developer Blogspot了解该模块。请参见下图(摘自该网站),该图片似乎与您希望实现的功能类似。
答案 2 :(得分:1)
这应该是你要找的:) http://code.google.com/p/android-ui-utils/downloads/detail?name=CarouselExample.zip&can=1&q=
或者(非常....),您可以使用Sencha Touch创建一个Web应用程序,并使用PhoneGap在您的Android设备上运行它,但这可能有点矫枉过正。
答案 3 :(得分:1)
您可以使用Android v4兼容包。 Check this link
答案 4 :(得分:0)
我的建议是请保持按钮“next”为该设置Action为start Activity()调用相同的活动并设置flage count = 1,设置“a”count = 2,设置“B”...