gpt4 book ai didi

android - 选取框文本在小部件中不起作用

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:13:56 26 4
gpt4 key购买 nike

情况是这样的,我有一个包含两个 TextView 的小部件,如果文本的宽度超过布局宽度,我希望文本滚动。问题是,选取框适用于底部 TextView ,但不适用于上部 TextView 。我附上代码 fragment 。你能告诉我我做错了什么吗?

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/left"
android:layout_width="97dip"
android:layout_height="fill_parent" >

<TextView
android:id="@+id/place"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:lines="1"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:textColor="@color/white" >
</TextView>

<TextView
android:id="@+id/weather_report"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/place"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:lines="1"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:textColor="@color/grey" >
</TextView>
</RelativeLayout>

最佳答案

试试这个,对我有用:

<TextView 
android:id="@+id/fact"
android:layout_width="200dp"
android:text="Loading... More text to see if it spans or not and want more"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit ="marquee_forever"
android:scrollHorizontally="true"
android:focusable="true"
android:focusableInTouchMode="true"
android:duplicateParentState="true">
<requestFocus
android:focusable="true"
android:focusableInTouchMode="true"
android:duplicateParentState="true" />
</TextView>

关于android - 选取框文本在小部件中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9578605/

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