0

アイコンとその下の短い説明を作成しようとしています。ImageView と TextView を使用してカスタマイズされた View クラスを作成し、それを xml ファイルに統合しました。これで、imageView とデフォルトのテキストが画面に表示されます。textview のテキスト コンテンツを変更する方法がわかりません。イメージビューのソース。

MyView.java

package sda.jk;

public class MyView extends LinearLayout{

    public MyView(Context context, AttributeSet attrs) {
        super(context, attrs);
        // TODO Auto-generated constructor stub
        LayoutInflater li=(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View v= li.inflate(R.layout.myview, this);
    }

}

myview.xml

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

    <ImageView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/ic_launcher"
        />
    <TextView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="my view"/>

</LinearLayout>

main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res/sda.jk"
    android:layout_width="match_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >
<sda.jk.MyView
        android:id="@+id/myView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >


    </sda.jk.MyView>
</LinearLayout>
4

5 に答える 5

1

テキストを設定するための関数をsda.jk.MyViewに記述します。テキストを変更するには、文字列パラメータを使用して関数を呼び出すだけです。

 Class MyView extends LinearLayout
 {
     //...

     public void setUserText(String str)
     {
          textview.setText(str);
     }

     //...
 }
于 2012-04-09T12:42:36.597 に答える
1

Step-1まず、myview で画像ビューとテキスト ビューに ID を割り当てます。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:orientation="vertical" >

    <ImageView 
        android:id="@+id/myImage"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/ic_launcher"
        />
    <TextView 
        android:id="@+id/myText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="my view"/>

</LinearLayout>

ステップ -2 を使用して oncreate メソッドで独自のビューを初期化します

MyView mv = (MyView)findViewById(R.id.myView1);

step-3 独自のビューの findViewById メソッドを使用して、イメージ ビューとテキスト ビューを初期化します。

TextView textView = (TextView) mv.findViewById(R.id.myText);
        ImageView imageView = (ImageView) mv.findViewById(R.id.myImage);

step-4 setTextメソッドを使用してテキストをテキストビューに設定

textView.setText("Sunil Kumar Sahoo");

を使用して背景画像を画像ビューに設定します

imageView.setBackgroundResource(R.drawable.ic_launcher);

oncreate メソッドは次のようになります (ステップ 2 からステップ 4 まで)

@Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
         setContentView(R.layout.main);
        MyView mv = (MyView)findViewById(R.id.myView1);
        TextView textView = (TextView) mv.findViewById(R.id.myText);
        textView.setText("Sunil Kumar Sahoo");
        ImageView imageView = (ImageView) mv.findViewById(R.id.myImage);
        imageView.setBackgroundResource(R.drawable.ic_launcher);
    }
于 2012-04-09T13:06:27.740 に答える
0

カスタム属性を追加するには、カスタムattr.xmlを記述し、カスタムビューのコンストラクターに属性をロードします。完全な例については、このページを確認してください http://javawiki.sowas.com/doku.php?id=android:custom-view-attributes

于 2012-04-09T12:45:07.003 に答える
0

TextView には複合ドローアブルと呼ばれる便利な機能があり、テキストの上、下、左、または右にドローアブルを組み込むことができます。次のように使用します。

<TextView
    android:id="@+id/txt"
    android:text="my compound drawable textview"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:drawableTop="@drawable/xxxxx" />

drawableBottom、drawableLeft なども使用できます。この方法では、独自のクラスを実装する必要はありません。

于 2012-04-09T12:41:27.940 に答える
0

ビュー階層から個々の要素にアクセスするには、findViewByIdメソッドを使用します。http://developer.android.com/reference/android/view/View.html#findViewById%28int%29を参照してください。

次のように、XML のビュー要素に識別子を提供する必要があります。

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

    <ImageView
        android:id="@+id/imgView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/ic_launcher" />

    <TextView
        android:id="@+id/txtView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="my view" />

</LinearLayout>

次のように、カスタム ビュー クラスからそれらを参照します。

ImageView imageView = (ImageView)v.findViewById(R.id.imgView);
TextView textView = (TextView)v.findViewById(R.id.txtView);

通常、他のメソッドからビューを変更できるように、ビューをインスタンス変数 (メンバー) として保持します。

于 2012-04-09T13:00:31.147 に答える