Xin chào mọi người, mọi người cho em hỏi, em mới tìm hiểu về android, em tìm hiểu về vấn đề Multiple Screens trên android, em thấy trên google có làm theo cách là làm mỗi size màn hình 1 layout :
- res/layout/my_layout.xml // layout for normal screen size (“default”)
- res/layout-large/my_layout.xml // layout for large screen size
- res/layout-xlarge/my_layout.xml // layout for extra-large screen size
- res/layout-xlarge-land/my_layout.xml //layout for extra-large in landscape orientation
Nhưng mỗi size màn hình lại có nhiều độ phân giải density khác nhau, như size normal vừa có độ phân giải mdpi, vừa có hdpi, xdhpi. Vậy làm sao e xác định được kích thước hình ảnh để cho vào các thư mục: - res/drawable-mdpi/graphic.png // bitmap for medium-density
- res/drawable-hdpi/graphic.png // bitmap for high-density
- res/drawable-xhdpi/graphic.png // bitmap for extra-high-density
- res/drawable-xxhdpi/graphic.png // bitmap for extra-extra-high-density
Thanks all!