Android 选取框不工作

发布于 2024-12-21 02:00:42 字数 2132 浏览 2 评论 0原文

Marquee 在文本视图中不起作用。我将文本视图放置在两个按钮之间的 TableLoyout 内。我将文本视图设置为可拉伸列。这是我的 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>

请任何人告诉我为什么它不起作用?

Marquee is not working in textview.I placed the textview inside the TableLoyout between two buttons. And i make the textview as stretchable column. Here is my xml code. I cant figure out the mistake.

<?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>

Please any one tell me why its not working?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千寻… 2024-12-28 02:00:42

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

A marquee starts when a TextView becomes either focused or selected. You can force it to start by calling setSelected(true) on the TextView.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文