为了账号安全,请及时绑定邮箱和手机立即绑定

为什么出不来效果!

为什么我的就出来一行!activity_main的代码都一样!

正在回答

3 回答

@Override
    public boolean isFocused() {
        // TODO Auto-generated method stub
        return true;
    }

ctrl+c保存一下


0 回复 有任何疑惑可以回复我~

package com.example.marqueetextviewdemo;


import android.content.Context;

import android.util.AttributeSet;

import android.widget.TextView;


public class MarqueeText extends TextView{

public MarqueeText(Context context) {

super(context);

}

public MarqueeText(Context context, AttributeSet attrs, int defStyle) {

super(context, attrs, defStyle);

}

public MarqueeText(Context context, AttributeSet attrs) {

super(context, attrs);

}

public boolean isFocused(){

return true;

}

}





<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:id="@+id/container"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    tools:context=".MainActivity">


    <com.example.marqueetextviewdemo.MarqueeText

        android:id="@+id/textView1"

      android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:singleLine="true"

        android:ellipsize="marquee"

        android:focusable="true"

        android:focusableInTouchMode="true"

        android:text="@string/hello_world" />

    

     <com.example.marqueetextviewdemo.MarqueeText

        android:layout_below="@id/textView1"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:singleLine="true"

        android:ellipsize="marquee"

        android:focusable="true"

        android:layout_marginTop="10dp"

        android:focusableInTouchMode="true"

        android:text="@string/hello_world" />


</RelativeLayout>


0 回复 有任何疑惑可以回复我~

你是不是用Android studio写的?那个isFocuse 里面的代码要改成return true

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Android攻城狮的第一门课(入门篇)
  • 参与学习       312584    人
  • 解答问题       4633    个

想快速掌握Android应用开发基础,选择学习这门课程就对了。

进入课程

为什么出不来效果!

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信