gpt4 book ai didi

安卓选框不工作

转载 作者:太空狗 更新时间:2023-10-29 15:30:00 24 4
gpt4 key购买 nike

Marquee 在 textview 中不起作用。我将 textview 放在两个按钮之间的 TableLoyout 中。我将 textview 设为可拉伸(stretch)列。这是我的 xml 代码。我想不出错误。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:background="#e0bf64" android:orientation="vertical">


<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="2"
android:background="#f2cd6d">
<TableRow>
<Button
android:id="@+id/btn_prv"
android:text="@string/prv"
android:textSize="16sp"
android:layout_column="1"
android:layout_width="100dip"
android:background="@drawable/prev_btn_re"
android:paddingLeft="0sp"
android:paddingTop="0sp"

/>

<TextView
android:id="@+id/head_title"
android:layout_width="125dip"
android:gravity="center"
android:paddingLeft="5sp"
android:paddingTop="10dip"
android:paddingRight="0sp"
android:background="#f2cd6d"
android:textSize="16sp"
android:textColor="@color/black"
android:marqueeRepeatLimit="marquee_forever"
android:lines="1"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:freezesText="true"
android:scrollHorizontally="true"
android:text="marquee text"

/>

<Button
android:id="@+id/btn_next"
android:text="@string/next"
android:textSize="16sp"
android:gravity="right"
android:layout_width="100dip"
android:background="@drawable/next_btn_re"
android:paddingRight="10sp"
android:paddingTop="5sp"
/>
</TableRow>
</TableLayout>
</LinearLayout>

谁能告诉我为什么它不起作用?

最佳答案

当 TextView 获得焦点或被选中时,选取框开始。您可以通过在 TextView 上调用 setSelected(true) 来强制它启动。

关于安卓选框不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8478501/

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