«android-layout» 태그된 질문

레이아웃은 활동, 프래그먼트 또는 앱 위젯의 UI와 같은 사용자 인터페이스의 시각적 구조를 정의합니다.

23
ScrollView 내부의 RecyclerView가 작동하지 않습니다
동일한 레이아웃에서 RecyclerView와 ScrollView가 포함 된 레이아웃을 구현하려고합니다. 레이아웃 템플릿 : <RelativeLayout> <ScrollView android:id="@+id/myScrollView"> <unrelated data>...</unrealated data> <android.support.v7.widget.RecyclerView android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/my_recycler_view" /> </ScrollView> </RelativeLayout> 문제 : 마지막 요소까지 스크롤 할 수 있습니다. ScrollView 내가 시도한 것 : ScrollView(현재 ScrollView포함 RecyclerView) 내부의 카드보기 -RecyclerView 초기 생각은 보기 유형 중 하나 가 …

30
RecyclerView : 불일치가 감지되었습니다. 잘못된 상품 위치
QA에서 버그를 감지했습니다. Android 기기 (Droid Turbo)를 회전 할 때 다음 RecyclerView 관련 충돌 이 발생했습니다. java.lang.IndexOutOfBoundsException : 불일치가 발견되었습니다. 잘못된 품목 위치 2 (오프셋 : 2). 상태 : 3 나에게 이것은 RecyclerView 내부의 오류처럼 보입니다. 코드에 의해 직접 발생하는 방법을 생각할 수 없기 때문에 ... 누구든지이 문제가 발생 했습니까? …

25
안드로이드 : 제목없이 대화 상자를 만드는 방법은 무엇입니까?
Android에서 사용자 정의 대화 상자를 생성하려고합니다. 다음과 같이 대화 상자를 만듭니다. dialog = new Dialog(this); dialog.setContentView(R.layout.my_dialog); 대화 상자의 제목을 제외한 모든 것이 잘 작동합니다. 대화 상자의 제목을 설정하지 않아도 대화 상자 팝업에는 대화 상자 위치에 빈 공간이 있습니다. 대화 상자 의이 부분을 숨길 수있는 방법이 있습니까? AlertDialog로 시도했지만 레이아웃이 올바르게 …

30
스크롤보기 내부의 Android 목록보기
scrollView많은 요소 가있는 안드로이드 레이아웃이 있습니다 . scrollViewI 의 하단 listView에는 어댑터가 채워져 있습니다. 내가 겪고있는 문제는 안드로이드가 이미 스크롤 가능한 기능을 가지고 있기 때문에 listView에서를 제외한다는 것 입니다. 내가 원하는 한 내용이며, 마스터에 대한 스크롤 할 수보기를 스크롤 할 수 있습니다.scrollViewscrollViewlistView 이 동작을 어떻게 달성 할 수 있습니까? 내 …

9
안드로이드 LinearLayout 그라데이션 배경
LinearLayout에 그라데이션 배경을 적용하는 데 문제가 있습니다. 이것은 내가 읽은 것에서 비교적 간단해야하지만 작동하지 않는 것 같습니다. 참고로 2.1-update1에서 개발 중입니다. header_bg.xml : <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <gradient android:angle="90" android:startColor="#FFFF0000" android:endColor="#FF00FF00" android:type="linear"/> </shape> main_header.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="50dip" android:orientation="horizontal" android:background="@drawable/header_bg"> </LinearLayout> @ drawable / …



11
RecyclerView 항목이 나타날 때 애니메이션하는 방법
RecyclerView 항목이 나타날 때 어떻게 애니메이션을 적용 할 수 있습니까? 기본 아이템 애니메이터는 리사이클 러 데이터가 설정된 후 데이터가 추가되거나 제거 될 때만 애니메이션을 만듭니다. 저는 새로운 응용 프로그램을 개발 중이며 시작할 곳이 없습니다. 이것을 달성하는 방법에 대한 아이디어가 있습니까?

10
프로그래밍 방식으로 뷰에 패딩 추가
Android v2.2 앱을 개발 중입니다. 나는이 조각을 . onCreateView(...)내 조각 클래스 의 콜백에서 다음과 같이 조각을 레이아웃에 팽창시킵니다. @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.login, null); return view; } 위의 팽창 된 레이아웃 파일은 (login.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" …

9
프로그래밍 방식으로 RelativeLayout에서 뷰를 레이아웃하는 방법은 무엇입니까?
XML을 통해 선언적으로보다는 프로그래밍 방식으로 다음을 달성하려고합니다. <RelativeLayout...> <TextView ... android:id="@+id/label1" /> <TextView ... android:id="@+id/label2" android:layout_below: "@id/label1" /> </RelativeLayout> 즉, 두 TextView번째를 첫 번째 아래에 어떻게 표시합니까? 하지만 코드에서 수행하고 싶습니다. RelativeLayout layout = new RelativeLayout(this); TextView label1 = new TextView(this); TextView label2 = new TextView(this); ... layout.addView(label1); layout.addView(label2); setContentView(layout); …

7
널을 뷰 루트로 전달하지 마십시오 (팽창 된 레이아웃의 루트 요소에서 레이아웃 매개 변수를 해결해야 함)
루트 스튜디오에 null을 전달하면 다음 경고가 표시됩니다. 널을 뷰 루트로 전달하지 마십시오 (팽창 된 레이아웃의 루트 요소에서 레이아웃 매개 변수를 해결해야 함) 에 null 값을 표시하고 getGroupView있습니다. 도와주세요. public class ExpandableListAdapter extends BaseExpandableListAdapter { private Context _context; private List<String> _listDataHeader; // header titles // child data in format of header …

11
안드로이드에서 다른 뷰 위에 뷰 배치 / 겹침 (z-index)
선형 레이아웃에서 imageview 및 textview로 구성된 선형 레이아웃이 있습니다. <LinearLayout android:orientation="horizontal" ... > <ImageView android:id="@+id/thumbnail" android:layout_weight="0.8" android:layout_width="0dip" android:layout_height="fill_parent"> </ImageView> <TextView android:id="@+id/description" android:layout_weight="0.2" android:layout_width="0dip" android:layout_height="wrap_content"> </TextView> 일부 규칙이 누락되었을 수 있습니다. 레이아웃에 대한 아이디어를 제공하는 것입니다. 길이와 너비가 50dip 인 또 다른 작은 텍스트보기를 원하고 imageview 위에 배치하면 "over"라는 말은 imageview보다 …

13
Android : 프로그래밍 방식으로보기 스타일 설정
XML은 다음과 같습니다. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" style="@style/LightStyle" android:layout_width="fill_parent" android:layout_height="55dip" android:clickable="true" android:orientation="horizontal" > <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal" /> </RelativeLayout> style프로그래밍 방식으로 속성 을 설정하는 방법은 무엇입니까?


14
하나의 뷰에 레이아웃을 부 풀리는 방법
XML로 정의 된 레이아웃이 있습니다. 또한 다음을 포함합니다 : <RelativeLayout android:id="@+id/item" android:layout_width="fill_parent" android:layout_height="wrap_content" /> 이 RelativeView를 다른 XML 레이아웃 파일로 팽창시키고 싶습니다. 상황에 따라 다른 레이아웃을 사용할 수 있습니다. 어떻게해야합니까? 나는 다른 변형을 시도했다 RelativeLayout item = (RelativeLayout) findViewById(R.id.item); item.inflate(...) 그러나 그들 중 누구도 잘 작동하지 않았습니다.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.