Witam wszystkich Właśnie zaimplementowałem ListView wewnątrz LinearLayout, ale muszę zdefiniować wysokość LinearLayout (musi to być 50% wysokości ekranu).android: layout_height 50% rozmiaru ekranu
<LinearLayout
android:id="@+id/widget34"
android:layout_width="300px"
android:layout_height="235px"
android:orientation="vertical"
android:layout_below="@+id/tv_scanning_for"
android:layout_centerHorizontal="true">
<ListView
android:id="@+id/lv_events"
android:textSize="18sp"
android:cacheColorHint="#00000000"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/tv_scanning_for"
android:layout_centerHorizontal="true">
</ListView>
</LinearLayout>
Czy to możliwe?
Zrobiłem coś podobnego do przycisku i EditText, ale wydaje się nie działać na układach.
To jest mój kod:
//capture the size of the devices screen
Display display = getWindowManager().getDefaultDisplay();
double width = display.getWidth();
//my EditText will be smaller than full screen (80%)
double doubleSize = (width/5)*4;
int editTextSize = (int) doubleSize;
//define the EditText
userName = (EditText) this.findViewById(R.id.userName);
password = (EditText) this.findViewById(R.id.password);
//set the size
userName.setWidth(editTextSize);
password.setWidth(editTextSize);
Dziękujemy! :)
Czy próbowałeś użyć RelativeLayout wokół LinearLayout i rozmiar RelativeLayout? –
Czy mogę wprowadzić procent w parametrze wysokości RelativeLayout? –
używać niestandardowych LayoutParams: http://developer.android.com/reference/android/view/ViewGroup.LayoutParams.html z RelativeLayout.setLayoutParams(): http://developer.android.com/reference/android/view/View .html # setLayoutParams% 28android.view.ViewGroup.LayoutParams% 29. ustaw wysokość na display.getHeight()/2 –