我有1.6,2.2和MyTouch 3G幻燈片(這是API#7,在Android設備選配器中列爲「2.1-Update1」)發生這個奇怪的問題。如果任何人可以解釋我在做什麼錯誤&如何解決它(或者可能確認這是一個Android錯誤),我將不勝感激!爲什麼TextView.setText會導致封閉的ScrollView滾動?
我的應用程序的基本思路是製作一個秒錶類的東西,用戶可以點擊一個按鈕來啓動一個計時器,然後再次點擊它來停止(暫停)計時器;進一步點擊恢復定時器和暫停定時器之間交替。
我有一個頂級ScrollView,其中包含一個RelativelLayout,其中包含一些小部件。第一個小部件是一個巨大的按鈕(這樣很容易按下),它將我所有其他小部件推到屏幕底部以下。這是故意的,因爲我想依靠ScrollView(以及屏幕提示給用戶)使其餘的輸入選項可用。
我有一個簡單的狀態機類型設置,其中mState是當前模式(STATE_TIMER_NOT_STARTED在用戶按任何按鈕之前,......在第一次按下之後運行,然後......在第二次之後,回到......第三等後跑步等)。
所有這些都很好,除了當計時器正在運行,並且用戶再次按下開始/停止/繼續按鈕時,ScrollView將向下滾動一些方式。我不發佈這個命令(我甚至沒有對ScrollView對象的引用),我不知道它爲什麼這樣做。
REPRO: 編譯+運行以下示例。當應用程序啓動時,按下'Start Timing'按鈕。使用拇指(或鼠標)向上拖動屏幕(以便您可以看到RatingBar),然後將其向下拖動(使按鈕再次完全顯示在屏幕上)。再次點擊按鈕(現在讀取'PauseTiming'),它會跳下一點。它不應該跳躍/向下滾動,因爲沒有任何聲明(我可以看到)告訴它向下滾動。就我所知,這是導致滾動的setText(當我將這些行註釋掉,不會發生滾動)。
我在問什麼: 如果我做的是愚蠢的東西&你可以指出它是什麼,我真的很感激它! :) ***我不知道'觸摸模式'是否可能與此有關,因爲當我使用鼠標的滾輪向上移動面板時,它似乎不會發生(在模擬器中)模擬的手指拖動)。我無法在觸摸模式中找到很多東西,也沒有關於在ScrollView中的觸摸模式中的焦點/選擇的具體內容。
如果您可以確認這個錯誤也適合您,那也可以(因爲痛苦愛公司AHEM我的意思是,因爲它可能有助於確認它不只是我:))。
MyTestApp.java
package bug.android.scrollview;
import android.app.Activity;
import android.os.Bundle;
import android.text.format.Time;
import android.view.Display;
import android.view.View;
import android.view.WindowManager;
import android.widget.Button;
import android.widget.TextView;
public class MyTestApp extends Activity {
public final static int STATE_TIMER_NOT_STARTED = 1;
public final static int STATE_TIMER_RUNNING = 2;
public final static int STATE_TIMER_PAUSED = 3;
private int mState;
Time t = new Time();
private Time data = new Time();
private Button btnStartStopResume;
private TextView lblSpacer;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.new_time_entry);
btnStartStopResume = (Button) findViewById(R.id.btnStartStopResume);
// Set the button's size so that the other info will also be visible
Display display = ((WindowManager) getSystemService(WINDOW_SERVICE))
.getDefaultDisplay();
// This is such a hack, but the windowScroller doesn't appear to
// have a height at this point in the lifecycle (nor in 'onResume' :()
btnStartStopResume.setHeight(display.getHeight() - 200);
lblSpacer = (TextView) findViewById(R.id.lblSpacer);
reset();
}
public void doStartStopResume(View v) {
if (mState == MyTestApp.STATE_TIMER_NOT_STARTED) {
mState = MyTestApp.STATE_TIMER_RUNNING;
data.setToNow();
} else if (mState == MyTestApp.STATE_TIMER_RUNNING) {
mState = MyTestApp.STATE_TIMER_PAUSED;
String s = getString(R.string.add_scroll_down_to_add);
lblSpacer.setText(s);
} else if (mState == MyTestApp.STATE_TIMER_PAUSED) {
mState = MyTestApp.STATE_TIMER_RUNNING;
}
}
public void doReset(View v) {
}
public void doNewRunClick(View v) {
}
public void doAddTiming(View v) {
}
public void reset() {
mState = STATE_TIMER_NOT_STARTED;
}
}
new_time_entry.xml
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/windowScroller"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<RelativeLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button
android:id="@+id/btnStartStopResume"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dip"
android:text="Start Timing"
android:textSize="40dp"
android:height="290dp"
android:onClick="doStartStopResume" />
<TextView
android:id="@+id/lblSpacer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/btnStartStopResume"
android:layout_centerHorizontal="true"
android:text="@string/add_scroll_down_for_more" />
<TextView
android:id="@+id/lblTimeStartLabel"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/lblSpacer"
android:layout_alignParentLeft="true"
android:clickable="true"
android:onClick="adjustStartTime"
android:text="Start of this run:"
android:textSize="8dp" />
<TextView
android:id="@+id/lblTimeStart"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/lblTimeStartLabel"
android:layout_alignParentLeft="true"
android:clickable="true"
android:onClick="adjustStartTime"
android:text="--:--:-- --"
android:textColor="#FFFFFF"
android:textSize="26dp" />
<TextView
android:id="@+id/lblElapsedLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/lblSpacer"
android:layout_alignRight="@id/lblSpacer"
android:layout_marginRight="5dp"
android:text="Elapsed Time:"
android:textSize="8dp" />
<TextView
android:id="@+id/lblTimeElapsed"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/lblElapsedLabel"
android:layout_alignRight="@id/lblSpacer"
android:layout_marginRight="5dp"
android:textColor="#99ff66"
android:text="-- m -- sec"
android:textSize="26dp"
android:layout_marginBottom="10dip"/>
<CheckBox
android:id="@+id/chkNewRun"
android:onClick="doNewRunClick"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/lblTimeElapsed"
android:text="This is a new run of timings"
android:layout_marginBottom="10dip" />
<TextView
android:id="@+id/lblIntensity"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Intensity (1 = none 5 = max)"
android:layout_below="@id/chkNewRun" />
<RatingBar
android:id="@+id/rbIntensity"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/lblIntensity"
android:numStars="5"
android:rating="2"
android:layout_marginBottom="5dip" />
<TextView
android:id="@+id/lblNotes"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Notes:"
android:layout_below="@id/rbIntensity" />
<EditText
android:id="@+id/txtNotes"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@android:drawable/editbox_background"
android:layout_below="@id/lblNotes"
android:layout_marginBottom="10dip" />
<Button
android:id="@+id/btnReset"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/txtNotes"
android:layout_alignParentLeft="true"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:text="Reset"
android:onClick="doReset" />
<Button
android:id="@+id/btnOk"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/txtNotes"
android:layout_toRightOf="@id/btnReset"
android:layout_alignParentRight="true"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:text="Add Timing To List"
android:onClick="doAddTiming" />
</RelativeLayout>
</ScrollView>
的strings.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Timer</string>
<string name="dlg_edit_timing_title">Edit A Timing</string>
<string name="add_scroll_down_for_more">< Scroll down for more options! ></string>
<string name="add_scroll_down_to_add">< Scroll down to save this timing! ></string>
<string name="start_timing">Start Timing\n\n</string>
<string name="stop_timing">Pause Timing\n\n</string>
<string name="resume_timing">Resume Timing\n\n</string>
</resources>
的droidManifest。XML
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="bug.android.scrollview"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".MyTestApp"
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>
<uses-sdk android:minSdkVersion="5" />
</manifest>
UPDATE 1:在調試器添加
if( btnStartStopResume.isInTouchMode())
Toast.makeText(this, "TOUCH MODE", 2000);
else
Toast.makeText(this, "NOT touch mode", 2000);
然後設置斷點確認該鍵總是處於觸摸模式(無論是否我手指拖動面板的上/下,或者將鼠標滾輪向上/向下)。因此,在第二次按下按鈕後(即當應用程序處於「停止/暫停時間」模式)時,處於觸摸模式和手指拖動面板的組合會導致在後續暫停中出現奇怪的額外時序。
更新2: 我剛剛注意到它正在向下滾動到EditText,沒有更多。它看起來像當您將面板向下移動時,EditText將獲取選擇內容,並且在單擊事件之後,ScrollView會滾動回到所選內容。似乎解釋了爲什麼鼠標滾輪方法沒有這個問題(它將選擇/焦點移回到按鈕)。
http://stackoverflow.com/questions/5375838/scrollview-disable-focus-move/7114179#7114179 – yanchenko 2013-05-22 09:41:08