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

为什么直接出错,我用的是AS。。

<com.example.saihor.qaq.test.MarqueeText
   android:id="@+id/text"
   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/text_"
   />
<com.example.saihor.qaq.test.MarqueeText
   android:layout_marginTop="62dp"
   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/text_"
   android:layout_below="@+id/text"
   android:id="@+id/text2" />

/**

*

**/




package com.example.saihor.qaq.test;

import android.content.Context;
import android.util.AttributeSet;
import android.widget.TextView;

import java.util.jar.Attributes;

/**
* Created by SaiHor on 2015/7/28.
*/
public class MarqueeText extends TextView {
   public MarqueeText(Context context, AttributeSet attrs, int defStyleAttr) {
       super(context, attrs, defStyleAttr);
   }
   public MarqueeText(Context context, AttributeSet attrs) {
       super(context, attrs);
   }
 public MarqueeText(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
       super(context, attrs, defStyleAttr, defStyleRes);
   }
   public MarqueeText(Context context) {
       super(context);
   }


   public boolean isFocused()
   {
       return true;
   }


}

正在回答

1 回答

我也是用的as,我的成功了啊,你是哪里出错了呢

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

举报

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

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

进入课程

为什么直接出错,我用的是AS。。

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