ScrollView和可选TextView出错...为什么?

时间:2015-04-08 10:09:35

标签: android textview scrollview

大家好我正在为我的笑话应用程序工作,我有TextViews,但每次打开我的Activity时,ScrollView会自动向下滚动到底部!为了解决这个问题,我设置android:focusable="false" 然后我的问题解决了,但现在我不能使用android:textIsSelectable="true"!我的TextView没有被选中我已经尝试了所有的解决方案,但它没有奏效!我已经在XML和Java活动中完成了它,比如:

tv.setTextIsSelectable (true); tv.setFocusable(false);

希望你有我的问题,谢谢!

TextView

的XML
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/sv_bf"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#ffffff"
    android:orientation="vertical"
    android:padding="15dp" >

    <TextView
        android:id="@+id/belief_quotes"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#ffffff"
        android:text="@string/belief_quotes"
        android:textColor="#000000"
        android:textSize="22sp" 
        android:textIsSelectable="true"
        android:focusable="false"/>

</ScrollView>

1 个答案:

答案 0 :(得分:0)

您可以在设置内容视图后将其放在Activity的“创建”部分中:

final ScrollView mainScrollView=(ScrollView)findViewById(R.id.YOURSCROLLVIEW);
mainScrollView.smoothScrollTo(0, 0);