我正在开发与印地文kavita(诗)有关的应用程序。我希望诗歌以真实诗歌的显示方式显示,如下图所示

java - 印地语kavita正确的对齐方式/合理性-LMLPHP

现在的问题是我不知道如何使用textview显示这种文本

最佳答案

使用垂直方向的线性布局。使用layout_width="match_parent"和相应的gravity属性为每行添加一个文本视图。

https://developer.android.com/reference/android/widget/LinearLayout.html

编辑:

如果您将诗歌作为字符串数组列表,其中每个元素都是诗歌的一行,则可以执行以下操作:

//Initialise your layout in your activity onCreate()
LinearLayout layout = (LinearLayout) findViewById(R.id.linear_layout);
layout.setOrientation(LinearLayout.VERTICAL);

//Start listening to your firebase data and put this somewhere in the callback:

// poemLines is a list of Strings you get from firebase
for(i=0; i<poemLines.size(); i++){
TextView view = new TextView(context);
view.setText(poemLines.get(i));
//set any other attributes to your textview that you want, width, height, font, etc
view.setGravity(i%2==0?END:START);
layout.add(view);
}

关于java - 印地语kavita正确的对齐方式/合理性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37273433/

10-10 17:07