1

フッターにテキスト ビューがあり、フッターでそのテキストをスクロールしたい。これが私のコードのスニペットですが、そのテキストはスクロールできません。どんな体でも私を助けることができます 前もって感謝します 私のコード

public class Footer extends RelativeLayout{
    private TextView footer_TextVeiw;
    ImageView logout;
    public Footer(Context context, AttributeSet attrs) {
        super(context, attrs);
        String infService = Context.LAYOUT_INFLATER_SERVICE;
        LayoutInflater li = (LayoutInflater) getContext().getSystemService(infService);
        li.inflate(R.layout.footer_layout, this, true);
        footer_TextVeiw= (TextView) this.findViewById(R.id.text_Footer);  
        footer_TextVeiw.setSelected(true);    } }

私の XML レイアウト

<RelativeLayout  xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".Footer" >


    <TextView
        android:id="@+id/text_Footer"
        android:layout_width="fill_parent"
        android:layout_height="25dp"
        android:layout_alignParentBottom="true"
        android:background="#ECEFF5"
        android:layout_centerHorizontal="true"
        android:marqueeRepeatLimit="marquee_forever"
        android:singleLine="true"
         android:scrollHorizontally="true" 
        android:ellipsize="marquee"
        android:text="@string/Footer"
         />


</RelativeLayout>
4

2 に答える 2

1

設定

android:maxLines = "AN_INTEGER"

android:scrollbars = "vertical" 

xmlファイルのTextViewで。そして使う

textView.setMovementMethod(new ScrollingMovementMethod())
于 2013-02-20T09:34:39.940 に答える
1

属性を試すことができます android:scrollbars="vertical" or Horizontal

于 2013-02-20T09:32:54.043 に答える