«view» 태그된 질문

이 태그는 데이터베이스보기 또는 UI / 아키텍처보기에 대한 질문입니다. sql-view, android-view, uiview 태그도 참조하십시오.

17
Android : 뷰에 maxHeight가없는 이유는 무엇입니까?
보기에는minHeight 있지만 어떻게 든 부족합니다 maxHeight. 내가 달성하려는 것은 일부 항목 (보기)을 채우는 것입니다 ScrollView. 1..3 항목이 있으면 직접 표시하고 싶습니다. 의미는 ScrollView높이가 1, 2 또는 3 항목임을 의미합니다 . 4 개 이상의 항목이 있으면 ScrollView확장을 중지 하고 (그래서 a maxHeight) 스크롤 제공을 시작하려고합니다. 그러나 불행히도를 설정하는 방법은 없습니다 maxHeight. …

11
Android의 컨텍스트에서 활동 가져 오기
이건 내가 엉망이야 사용자 정의 레이아웃 클래스 내에서 활동 메소드를 호출해야합니다. 이것의 문제는 레이아웃 내에서 활동에 액세스하는 방법을 모른다는 것입니다. ProfileView public class ProfileView extends LinearLayout { TextView profileTitleTextView; ImageView profileScreenImageButton; boolean isEmpty; ProfileData data; String name; public ProfileView(Context context, AttributeSet attrs, String name, final ProfileData profileData) { super(context, attrs); …

8
뷰의 절대 위치 설정
Android에서 뷰의 절대 위치를 설정할 수 있습니까? (가 있다는 것을 알고 AbsoluteLayout있지만 더 이상 사용되지 않습니다 ...) 예를 들어, 240x320px 화면이있는 경우 ImageView가운데가 (100,100) 위치에 있도록 20x20px 인 화면을 어떻게 추가 할 수 있습니까?

20
뷰의 배경색을 설정하는 방법
뷰 (이 경우 버튼)의 배경색을 설정하려고합니다. 이 코드를 사용합니다 : // set the background to green v.setBackgroundColor(0x0000FF00 ); v.invalidate(); 화면에서 버튼이 사라집니다. 내가 뭘 잘못하고 있으며 모든보기에서 배경색을 변경하는 올바른 방법은 무엇입니까? 감사.
179 android  view  colors  background  set 

20
Swift에서 뷰의 모든 하위 뷰를 제거하는 방법은 무엇입니까?
하위 뷰를 하나씩 제거하는 대신 슈퍼 뷰에서 모든 하위 뷰를 한 번에 제거하는 간단한 방법을 찾고 있습니다. //I'm trying something like this, but is not working let theSubviews : Array = container_view.subviews for (view : NSView) in theSubviews { view.removeFromSuperview(container_view) } 내가 무엇을 놓치고 있습니까? 최신 정보 내 앱에는 메인이 …
176 macos  view  swift 

5
프로그래밍 방식으로 Segue를 수행하고 매개 변수를 대상보기로 전달
내 응용 프로그램에는 프로그래밍 방식으로 segue를 수행하는 버튼이 있습니다. - (void)myButtonMethod { //execute segue programmatically [self performSegueWithIdentifier: @"MySegue" sender: self]; } 대상보기를 참조하고 일부 매개 변수를 전달하는 방법이 있는지 알고 싶습니다. 나는 prepareForSegue방법에서 그것을 참조 할 수 있다는 것을 알고 myDestinationViewController *vc = [segue destinationViewController];있지만, 프로그래밍 방식으로 segue를 실행하는 방법을 …

3
Xamarin.Form의 LayoutOptions, 특히 채우기 및 확장의 차이점은 무엇입니까?
Xamarin.Forms에는 every 와 View두 가지 속성이 있습니다. 둘 다 유형 이며 다음 값 중 하나를 가질 수 있습니다.HorizontalOptionsVerticalOptionsLayoutOptions LayoutOptions.Start LayoutOptions.Center LayoutOptions.End LayoutOptions.Fill LayoutOptions.StartAndExpand LayoutOptions.CenterAndExpand LayoutOptions.EndAndExpand LayoutOptions.FillAndExpand 분명히 상위 뷰에서 뷰의 정렬을 제어합니다. 그러나 각 개별 옵션의 동작은 정확히 어떻게됩니까? 그리고 Fill접미사와의 차이점은 무엇 Expand입니까?

8
안드로이드-View 안에 아이들을 넣습니까?
보기가 주어지면 그 안에 자식보기를 어떻게 얻을 수 있습니까? 그래서 사용자 정의보기가 있고 디버거 mChildren는 7 개의 다른보기가 있음을 보여줍니다 . 이러한 뷰에 액세스하는 방법이 필요하지만이를 수행하는 퍼블릭 API가없는 것 같습니다. 어떤 제안? 편집하다: 내 맞춤보기는 AdapterView
169 android  view 

5
사전 뷰 객체 란 무엇입니까?
파이썬 2.7에서는 사전보기 메소드를 사용할 수 있습니다. 이제 다음과 같은 장단점을 알고 있습니다. dict.items()(와 values, keys) : 당신이 실제로 결과를 저장할 수 있도록 목록을 반환하고, dict.iteritems() (및 기타) : 생성기를 반환하므로 생성 된 각 값을 하나씩 반복 할 수 있습니다. 무엇을 dict.viewitems()위한 것입니까? 그들의 장점은 무엇입니까? 어떻게 작동합니까? 결국은 무엇입니까? …
158 python  view  dictionary 

5
Android-뷰에 동적으로 뷰 추가
뷰 레이아웃이 있습니다- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:padding="0px" android:orientation="vertical"> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/items_header" style="@style/Home.ListHeader" /> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/items_none" android:visibility="gone" style="@style/TextBlock" android:paddingLeft="6px" /> <ListView android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/items_list" /> </LinearLayout> 내가하고 싶은 것은 다음과 같은 레이아웃이있는 주요 활동입니다. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:padding="0px" android:id="@+id/item_wrapper"> </LinearLayout> 내 데이터 모델을 반복하고 첫 번째 …

7
SQL에서 뷰와 테이블의 차이점
중복 가능성 : 성능에서 뷰와 테이블의 차이 SQL에서 뷰와 테이블의 주요 차이점은 무엇입니까? 테이블 대신 뷰를 사용하면 어떤 이점이 있습니까?
136 sql  view 

17
소프트웨어 키보드가 Android의 배경 이미지 크기를 조정합니다
소프트웨어 키보드가 나타날 때마다 배경 이미지의 크기가 조정됩니다. 아래 스크린 샷을 참조하십시오 : 보시다시피, 배경은 일종의 압착입니다. 누구나 배경의 크기를 조정하는 이유를 밝힐 수 있습니까? 내 레이아웃은 다음과 같습니다. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/page_bg" android:isScrollContainer="false" > <LinearLayout android:layout_height="wrap_content" android:orientation="horizontal" android:layout_width="fill_parent" > <EditText android:id="@+id/CatName" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" android:inputType="textCapSentences" android:lines="1" /> …

8
Canvas에 그릴 텍스트 높이 측정 (Android)
텍스트 높이를 측정하는 간단한 방법은 무엇입니까? 내가 지금하고있는 방법은 페인트를 사용 measureText()하여 너비를 얻은 다음 시행 착오를 통해 대략적인 높이를 얻는 것입니다. 나는 또한 엉망 FontMetrics이되었지만, 이것들은 모두 대략적인 방법처럼 보입니다. 다른 해상도로 조정하려고합니다. 나는 그것을 할 수 있지만, 상대적인 크기를 결정하기 위해 많은 계산으로 엄청나게 장황한 코드로 끝납니다. 난 …

6
프로그래밍 방식으로 Android에서 사용자 정의보기의 높이와 너비 설정
이라는 이름의 사용자 지정보기를 만들었습니다 Graphview. 다음은 GraphView 클래스의 구조입니다. public class GraphView extends View { public GraphView(Context context, float[] values, String title, String[] horlabels, String[] verlabels, boolean type) { super(context); ........ } .................. ................. } 을 사용하여 표를 뷰에 추가했습니다 addview(). 잘 작동합니다. 이제의 높이와 너비를 설정하고 싶습니다 GraphView. …
128 android  view  height  width  params 


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