«android-layout» 태그된 질문

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

14
상대 레이아웃의 백분율 너비
Activity내 Android 앱에서 로그인 을 위한 양식 레이아웃을 작업 중입니다 . 아래 이미지는 내가 원하는 모습입니다. 다음 XML을 사용 하여이 레이아웃을 달성 할 수있었습니다 . 문제는 약간 해킹입니다. 호스트 EditText의 너비를 하드 코딩해야했습니다. 구체적으로 다음을 지정해야했습니다. android:layout_width="172dp" 호스트와 포트 EditText의 너비를 백분율로 지정하고 싶습니다. (호스트의 80 %, 포트의 20 %와 …

30
현재 표시된 조각을 어떻게 얻습니까?
Android에서 조각으로 놀고 있습니다. 다음 코드를 사용하여 조각을 변경할 수 있다는 것을 알고 있습니다. FragmentManager fragMgr = getSupportFragmentManager(); FragmentTransaction fragTrans = fragMgr.beginTransaction(); MyFragment myFragment = new MyFragment(); //my custom fragment fragTrans.replace(android.R.id.content, myFragment); fragTrans.addToBackStack(null); fragTrans.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE); fragTrans.commit(); 내 질문은 Java 파일에서 현재 표시된 Fragment 인스턴스를 어떻게 얻을 수 있습니까?

14
Android 버튼에서 drawableLeft를 프로그래밍 방식으로 설정하는 방법은 무엇입니까?
동적으로 버튼을 만들고 있습니다. 먼저 XML을 사용하여 스타일을 지정했으며 아래 XML을 가져 와서 프로그래밍 방식으로 만들려고합니다. <Button android:id="@+id/buttonIdDoesntMatter" android:layout_height="wrap_content" android:layout_width="fill_parent" android:text="buttonName" android:drawableLeft="@drawable/imageWillChange" android:onClick="listener" android:layout_width="fill_parent"> </Button> 이것이 내가 지금까지 가진 것입니다. 드로어 블을 제외한 모든 것을 할 수 있습니다. linear = (LinearLayout) findViewById(R.id.LinearView); Button button = new Button(this); button.setText("Button"); button.setOnClickListener(listener); button.setLayoutParams( …

5
탐색 창 (Google+ 및 YouTube)
오늘날 최고의 일부 앱과 같은 슬라이딩 메뉴를 구현하는 방법을 아는 사람이 있습니까? 다른 스택 오버플로 질문 에는이 작업을 수행하는 방법에 대한 답변이 없으므로 다른 사람들을 돕기 위해 많은 정보를 수집하려고합니다. 아래에서 언급 한 모든 응용 프로그램은 슬라이드 메뉴를 구현하는 데 큰 도움이됩니다. 1. Google Plus (12/7/7 현재) 왼쪽 상단에서 G …

12
Android에서 ListViews 사이의 줄을 어떻게 제거합니까?
나는 ListView이 같은 두 가지를 사용 하고 있습니다 : <ListView android:id="@+id/ListView" android:text="@string/Website" android:layout_height="30px" android:layout_width="150px" android:scrollbars="none" android:transcriptMode="normal"/> <ListView android:id="@+id/ListView1" android:text="@string/Website" android:layout_height="30px" android:layout_width="150px" android:scrollbars="none" android:transcriptMode="normal"/> 두 ListViews 사이에 빈 줄이 하나 있습니다 . 어떻게 제거합니까?


18
안드로이드에서 listView 항목 사이에 공백을 설정하는 방법
listView Item에서 marginBottom을 사용하여 listView Item 사이에 공간을 만들려고했지만 여전히 항목이 서로 붙어 있습니다. 가능합니까? 그렇다면 구체적인 방법이 있습니까? 내 코드는 다음과 같습니다 <LinearLayout android:id="@+id/alarm_occurences" android:layout_width="fill_parent" android:orientation="vertical" android:layout_height="fill_parent" android:background="#EEEEFF" xmlns:android="http://schemas.android.com/apk/res/android"> <ListView android:id="@+id/occurences" android:layout_width="fill_parent" android:layout_height="fill_parent" /> </LinearLayout> 내 맞춤 목록 항목 : <com.android.alarm.listItems.AlarmListItem xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@drawable/alarm_item_background" android:layout_marginBottom="10dp" > <CheckedTextView …

6
ScrollView 내에서 LinearLayout이 확장되지 않음
나는이 LinearLayout내부 a를 ScrollView가지고 android:layout_height="fill_parent"있지만 전체 높이로 확장되지 않습니다 ScrollView. 내 레이아웃은 다음과 같습니다. level layout layout_width layout_height 1 LinearLayout fill_parent fill_parent 2 LinearLayout fill_parent wrap_content 3 (some irrelevant stuff) 2 ScrollView fill_parent fill_parent <-- this expands full height 3 LinearLayout fill_parent fill_parent <-- this does not (has orientation=vertical) (following …

30
Android 툴바 센터 제목 및 사용자 정의 글꼴
툴바 제목에 사용자 정의 글꼴을 사용하고 툴바의 중앙에 배치하는 올바른 방법을 찾으려고합니다 (클라이언트 요구 사항). 현재 나는 좋은 오래된 ActionBar를 사용하고 있으며 제목을 빈 값으로 설정하고 setCustomView사용자 정의 글꼴 TextView를 넣고 ActionBar.LayoutParams를 사용하여 중앙에 배치하는 데 사용했습니다. 더 좋은 방법이 있습니까? 새로운 툴바를 ActionBar로 사용합니다.

13
RecyclerView로 수평 ListView를 작성하는 방법은 무엇입니까?
내 Android 응용 프로그램에서 가로 목록보기를 구현해야합니다. 나는 약간의 연구를하고 안드로이드에서 수평 ListView 를 어떻게 만들 수 있습니까? 및 안드로이드에서 수평의 ListView? 그러나 이러한 질문은 Recyclerview가 릴리스되기 전에 요청되었습니다. Recyclerview로 이것을 구현하는 더 좋은 방법이 있습니까?

19
프로그래밍 방식으로 layout_gravity를 설정하는 방법은 무엇입니까?
내 질문은 간단합니다 프로그래밍 방식으로 단추 layout_gravity를 설정하는 방법은 무엇입니까? 인터넷에서 이것을 찾았지만 Nullpointer 예외가 발생합니다. Button MyButton = new Button(this); LinearLayout.LayoutParams lllp=(LinearLayout.LayoutParams)MyButton.getLayoutParams(); lllp.gravity=Gravity.RIGHT; MyButton.setLayoutParams(lllp); MyLinearLayout.addView(MyButton); 어떤 해결책?

5
XML 레이아웃에서 Android <merge> 태그의 목적은 무엇입니까?
태그에서 Romain Guy의 게시물 을 읽었 &lt;merge /&gt;지만 여전히 유용한 방법을 이해하지 못합니다. &lt;Frame /&gt;태그 의 일종의 교체입니까 , 아니면 다음과 같이 사용됩니까? &lt;merge xmlns:android="...."&gt; &lt;LinearLayout ...&gt; . . . &lt;/LinearLayout&gt; &lt;/merge&gt; 다음 &lt;include /&gt;다른 파일의 코드?


24
appcompat v7을 사용하여 EditText 하단 선 색상 변경
appcompat v7을 사용하여 Android 5 이하에서 일관된 모양을 얻습니다. 오히려 잘 작동합니다. 그러나 EditText의 결론 색상과 악센트 색상을 변경하는 방법을 알 수 없습니다. 가능합니까? 사용자 정의를 정의하려고 시도했지만 android:editTextStyle(아래 참조) 전체 배경색 또는 텍스트 색상 만 변경했지만 결론이나 악센트 색상은 변경하지 못했습니다. 사용할 특정 속성 값이 있습니까? android:background속성을 통해 사용자 …

9
textview 하이퍼 링크의 색상을 변경하는 방법?
하이퍼 링크에이 코드를 사용하고 있습니다. &lt;TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/hyperlink" android:text="@string/hyperlink" android:autoLink="web"/&gt; 기본적으로 파란색으로 표시되지만 Android에서 하이퍼 링크의 색상을 어떻게 변경합니까?

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