Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
xml ファイルで定義された 4 つのビューで構成される単純なアクティビティがあります。パフォーマンスのために、ID でビューにアクセスするか、メンバーがアクティビティでそれらを参照するようにする方が良いですか? 明らかに違う?
ありがとう
findViewById()アプリで参照する必要があるビューごとに 1 回だけ呼び出す必要があります。この呼び出しをonCreate()行い、返されたビュー インスタンスをプライベート メンバー変数に保存します。その後、後で直接参照できます。
findViewById()
onCreate()
特に多くのビューがある場合、 findViewById() は高価です。
これは、ほぼ標準的な Android の慣行です。
I have a simple DataGrid which I am binding to a ObservableCollection and its producing black small lines in the Grid with no Data Visible. I am using ObservableCollection as