0

シナリオ: 4 つのボタンを Relative Layout に配置しました。これらのボタンのテキストはアプリの使用期間を通じて変化し、テキストの長さに応じてボタンが縮小または拡大します。使用: RelativeLayout.getChildAt().setText();

Q1) しかし、各ボタンが画面幅の 40% を占める必要がありますが、高さはさまざまです。Q2)特に私のコードでは、getChildAt()を使用してボタンにアクセスする必要があります。

RelativeLayout を置き換えてボタンの幅を画面幅の 40% に設定し、特にgetChildAt()を使用してこれらのボタンにアクセスできるようにするには、どのレイアウト タイプを使用する必要がありますか? SomeLayout.getChildAt(); レイアウトがボタンの直接の親になるようにします。

    <RelativeLayout android:id="@+id/buttonRelativeLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:layout_margin="10dp">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Button"
        android:id="@+id/optionButton1"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Button"
        android:id="@+id/optionButton2"
        android:layout_alignParentTop="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Button"
        android:id="@+id/optionButton3"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Button"
        android:id="@+id/optionButton4"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true" />
</RelativeLayout>
4

3 に答える 3

1

Android のパーセント サポート ライブラリは、画面上の Android ウィジェットにパーセンテージ比を与える素晴らしい仕事をします。LinearLayout

Githubデモはこちら!

<android.support.percent.PercentRelativeLayout
   xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TextView
        android:id="@+id/fifty_huntv"
        android:background="#ff7acfff"
        android:text="20% - 50%"
        android:textColor="@android:color/white"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_heightPercent="20%"
        app:layout_widthPercent="50%" />
    <TextView
        android:layout_toRightOf="@id/fifty_huntv"
        android:background="#ffff5566"
        android:text="80%-50%"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_heightPercent="80%"
        app:layout_widthPercent="50%"
        />
</android.support.percent.PercentRelativeLayout>

本当にすごい!!!

于 2015-08-31T07:49:28.447 に答える
1

あなたは実際には運がいいだけです。Android は新しいパーセント サポート ライブラリをリリースしました。ドキュメントはまだありませんが、ライブラリの使用方法を確認するために使用できる優れたサンプル プロジェクトを次に示します。基本的に、画面のパーセンテージでビュー ウィジェットのサイズを変更できます。

https://github.com/JulienGenoud/android-percent-support-lib-sample

そして、これについて話している2つの記事もここにあります:

http://www.androidauthority.com/using-the-android-percent-support-library-630715/

http://inthecheesefactory.com/blog/know-percent-support-library/en

于 2015-08-27T19:27:06.097 に答える
0

今のところ、それを可能にするレイアウト要素は思いつきません。コードまたは init ビュー/変数メソッドのいずれかでこれを試してonCreate、ボタンを取得し、サイズを画面の 40% に設定します。

Display display = getWindowManager().getDefaultDisplay();
Point screenSize = new Point();
display.getSize(screenSize);

RelativeLayout rlParent = findViewById(R.id.<RELATIVE_LAYOUT_ID>);

for(int i = 0; i < 4; i++)
{
    View btn = rlParent.getChildAt(i);
    RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams)btn.getLayoutParams();
    params.width= screenSize.y * 0.4f;//40%
    btn.setLayoutParams(params);
}
于 2015-08-27T19:06:28.550 に答える